*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    height: 100vh;
    width: 100%;
    background-image: url('./bg.jpg');
    background-size: 100% 100%;
}
nav{
    display: flex;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 6%;
    padding-right: 6%;
}
ul li{
    list-style-type: none;
    font-size: 20px;
    display: inline-block;
    padding: 10px 25px;
}
ul li a{
    text-decoration: none;
    color: white;
}
ul li a:hover{
    color: black;
    transition: .5s;
}
.logo{
    color: white;
    font-size: 25px;
    letter-spacing: 2px;
    cursor: pointer;
}
span{
    color: black;
}
.btn{
    background-color:  white;
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 13px 20px;
    border-radius: 25px;
}
.btn:hover{
    background-color: transparent;
    color: white;
    border: 2px solid whitesmoke;
}
footer{
    position: fixed;
    bottom:0;
    background-color: aquamarine;
    width: 100%;
}
footer p{
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 5px 0;
    font-weight: bold;
}