@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');

* {
    margin: 0;
    padding: 0;
    background-color: black;
    list-style: none;
    text-decoration: none;
}

header {
    height: 90px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav {
    width: 60%;
}

ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

li {
    list-style: none;
    color: aliceblue;
    cursor: pointer;
    font-size: 19px;
    transition: .5s;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

li:hover {
    color: #D21617;
}

#logo {
    width: 150px;
    height: auto;
}

#title {
    width: 100%;
    height: 180px;
    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 70px;
    margin-top: 50px;
}

.title {
    color: #D21617;
    text-align: center;
}

#title-form {
    width: 100%;
    font-size: 36px;
    font-family: 'Kdam Thmor Pro', sans-serif;
    text-align: center;
    color: #D21617;
}

#form {
    width: 100%;
    display: flex;
    justify-content: center;
    color: #D21617;
}

#text {
    color: aliceblue;
    width: 350px;
    height: 30px;
}

footer {
    height: 300px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

span {
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

.footer-navigation {
    display: none;
}

.footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width: 768px) {
    .footer-navigation {
        display: block;
    }

    nav {
        display: none;
    }

    #title {
        height: 110px;
        font-size: 40px;
        margin-top: 35px;
    }
    
    #title-form {
        margin-bottom: 30px;
    }

    #form {
        margin-bottom: 30px;
    }

}


