body {
    font-family: manrope;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    transition: 2s;
}

header {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 1%;
}

.logo img {
    width: 100px;
    border: 2px solid #ceaa5b;
    border-radius: 100px;
}

.container {
    display: grid;
    padding: 2%;
    background-color: rgba(255, 255, 255, 0.659);
    border: 2px solid #14213d;
    border-radius: 15px;
    margin: 2%;
}

form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
}

input {
    height: 1.5em;
}

select {
    height: 30px;
    font-family: manrope;
}

button {
    width: 300px;
    height: 40px;
    font-family: manrope;
    font-weight: 600;
    background: linear-gradient(-45deg, rgba(20, 33, 61, 1) 0%, rgba(206, 170, 91, 1) 35%, rgba(130, 130, 130, 1) 100%);
    border-radius: 15px;
    transition: 2s ease;
}

button:hover {
    animation: slide 2s ease-in infinite;
}

@keyframes slide {
    50% {
        background: linear-gradient(45deg, rgba(20, 33, 61, 1) 0%, rgba(206, 170, 91, 1) 45%, rgba(130, 130, 130, 1) 100%);
    }

    100% {
        background: linear-gradient(-45deg, rgba(20, 33, 61, 1) 0%, rgba(206, 170, 91, 1) 76%, rgba(130, 130, 130, 1) 100%);
    }
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    align-content: center;
    height: 100px;
}

.background {
    position: fixed;
    z-index: -5;
    display: flex;
    gap: 100px;
    /* transform: rotateY(45deg); */
    /* rotate: 45deg; */
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 10%;
    top: -150px;
}

.night {
    width: 100px;
    height: 1500px;
    background-color: #14213d;
}

.gold {
    width: 100px;
    height: 1500px;
    background-color: #ceaa5b;
}

.black {
    width: 100px;
    height: 1500px;
    background-color: #828282;
}

@font-face {
    font-family: manrope;
    src: url(/manrope-regular.otf);
}