@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: linear-gradient(0deg, #4b4b4b, #17203b);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}

}

header {
    position: fixed;
    width: 100%;
    padding: 20px 25px;
}

.logo img{
    width: 35px;
    filter: brightness(100);
}

.contact_btn {
    font-size: 1rem;
    color: white;
    /* color: rgb(136, 136, 136); */
    transition: color .1s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a {
    text-decoration: none;
}

.container {
    display: flex;
    text-align: center;
    flex-direction: column;
    padding: 24vh 50px;
}

.title-container {
    color: white;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subtitle {
    color: #dd6447;
    font-weight: 400;
    font-size: 1.3rem;
    /* font-style: italic; */
}

.terms-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terms-text {
    text-align: left;
    max-width: 700px;
}

p {
    color: rgb(136, 136, 136);
}

.terms_span {
    color: #dd6447;
    border-bottom: .7px solid ;
    transition: color .1s;
}

.terms_span:hover {
    color: #b5533b;
}

.privacy_info {
    margin-bottom: 10px;
}

@media only screen and (max-width: 530px) {
    .container {
        padding-top: 25vh;
        padding-left: 40px;
        padding-right: 40px;
    }
}

