@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

body{
    background-image: url("../images/background.png");
    background-size: cover;
    font-family: 'Noto Sans', sans-serif;
    font-family: 'Poppins', sans-serif;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: lightskyblue;
    padding: 8px;
}

ul{
    display: flex;
}

li{
    list-style: none;
    padding: 0 15px;
    font-size: 16px;
    cursor: pointer;
}

div.logo{
    font-size: 20px;
    cursor: pointer;
}

li:hover, div.logo:hover{
    color: white;
}

footer{
    justify-content: center;
    background-color: lightskyblue;
    display: flex;
    padding: 12px;
    align-items: center;
    font-size: 13px;
}

main{
    min-height: 79.5vh;
    padding: 2px;
}

.container{
    max-width: 80vw;
    margin: auto;
    padding: 15px;
    opacity: .75; /* Standard: FF gt 1.5, Opera, Safari, CSS3 */
    filter: alpha(opacity=75); /* IE lt 8 */
    -ms-filter: "alpha(opacity=75)"; /* IE 8 */
    -khtml-opacity: .75; /* Safari 1.x */
    -moz-opacity: .75; /* FF lt 1.5, Netscape */
    background-color: aqua;
    text-align: center;
}

.container h1{
    padding: 12px;
}

#submit {
    padding: 10px;
    margin: 10px;
    width:80px;
    height: 40px;
    text-align: center;
    border-radius: 30px;
    background-color: rgb(67, 64, 250);
    color: white;
    cursor: pointer;

}

input {
    background-color:transparent;
    height: 17px;
    width: 250px;
}

#submit:hover{
    background-color: red;
}

@media only screen and (max-width: 600px){
    .container{
        font: 12px;
    }

    nav{
        flex-direction: column;
    }

    .logo{
        padding: 6px 0;
    }
}


.row{
    display: flex;
    justify-content: space-around
}

td:first-letter{
    text-transform: capitalize;
}