body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

a{
    text-decoration: none;
}

.my-navbar{
    height: 80px;
    width: 100%;
    font-weight: bold;
    background-color: white;
    font-size: 14px;
}

.navbar-flex{
    display: flex;
    justify-content: space-between;
}

.brand-link{
    margin-top: 15px;
    padding: 10px;
}

.brand-link a{
    color: black;
    font-size: 20px;
    font-family: "Audiowide";
}

.navbar-options-container{
    height: 80px;
}

.navbar-options-flex{
    display: flex;
    justify-content: space-evenly;
}

.navbar-options{  
}

.navbar-options ul{
    margin:30px 10px;
}

.navbar-options li{
    list-style: none;
    display: inline;
    margin-right: 30px;
    line-height: 10px;
}

.navbar-options li a{
 color: black;
}

.navbar-auth{  
    display: flex;
}

.nav-auth-link{
    margin-top: 20px;
    padding: 10px;
    
}

.nav-auth-link a{
    font-weight: bold;
    color: white;
}

.nav-login{
    background-color: black;
    height: 80px;
    
}

.nav-signup{
background-color: #1ecad3;
height: 80px;
}

.landing-text{
    z-index: 1;
}

@media screen and (max-width: 1000px){
    .navbar-options-container{
        display: none;
    }
}

@media screen and (min-width: 1000px){
    .small-screen-menu{
        display: none;
    }
    .navbar-options-small-screen{
        display: none;
    }
}

.small-screen-menu{
    width: 40px;
    height: 40px;
    align-self: center;
    margin: 20px;
}

.small-screen-menu img{
    width: 100%;
}

.small-screen-menu button{
    border: none;
    background: none;
    height: 100%;
}

.navbar-options-small-screen{
    background: white;
    height: 350px;
    width: 100%;
    position: absolute;
    z-index: 2;
}

.hide{
    display: none;
}

.small-screen-menu-options{
    border: thin solid white;
    height: 50px;
    width: 90%;
    margin: 10px auto;
    color: black;
}

.small-screen-menu-options p{
    margin-left: 10px;
    margin-top: 10px;
    font-weight: bold;
}

.footer{
    background-color: black;
    padding: 10px;
}

.footer-brand-link a{
    color: white;
    font-family: Arial Black;
}

.footer-p{
    color: grey;
    margin: 10px;
}

.footer-a{
    margin: 10px;
}

.footer-a a{
    text-decoration: underline;
    color: grey;
    margin-right: 20px;
}