*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: Comic Sans MS, Comic Sans, cursived;
}

/* Nav Bar */
nav{
    position: sticky;
    top: 0;
    height: 50px;
    width: 100vw;
    background: linear-gradient(rgb(236, 239, 240),rgb(62, 154, 182));
    display: flex;
    align-items: center;
    justify-content: space-between; 
    z-index: 99;
}

#logo {
    display: flex;
    margin-left: 10px;
    

}
#hover-content {
    display: none;
}
#logo:hover #hover-content {
    display: block;
    font-size: 9px;
}

#nav-links {
    display: flex;
    gap: 20px;
    margin-right: 30px;
}

#nav-links li{
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 20px;
    
}

#nav-links li a{
    text-decoration: none;
    color: black;
    font-weight: 700;
}

#nav-links2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 30px;
    transition: 0.4s ease-in;
}

#nav-links2 li{
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-left: 30px;
    margin-top: 20px;
}

#nav-links2 li:hover{
    border: 2px solid rgba(230, 70, 70, 0.817);
    background-color: rgba(241, 229, 59, 0.6);
}

#nav-links2 li a{
    text-decoration: none;
    color: black;
    font-weight: 700;
}


#nav-links3 {
    display: flex;
    gap: 20px;
    margin-left: 40vw;
    align-items: center;
    justify-content: space-between;
}

#nav-links3 li{
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 20px;
    
}

#nav-links3 li a{
    text-decoration: none;
    color: black;
    font-weight: 700;
}
#login{
    background-color: transparent;
    width: 110px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin-top: 4px;
    outline: none;
    cursor: pointer;
    transition: .5s;
    background-color: rgb(233, 130, 130);
    font-weight: 700;
}

#signup{
    background-color: transparent;
    width: 110px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin-top: 4px;
    outline: none;
    cursor: pointer;
    transition: .5s;
    background-color: rgb(233, 130, 130);
    font-weight: 700;
}
#login2{
    background-color: transparent;
    width: 110px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin-top: 4px;
    outline: none;
    cursor: pointer;
    transition: .5s;
    background-color: rgb(233, 130, 130);
    font-weight: 700;
    display: none;
}

#signup2{
    background-color: transparent;
    width: 110px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin-top: 4px;
    outline: none;
    cursor: pointer;
    transition: .5s;
    background-color: rgb(233, 130, 130);
    font-weight: 700;
    display: none;
}

#logout{
    background-color: transparent;
    width: 120px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin-top: 4px;
    outline: none;
    cursor: pointer;
    transition: .5s;
    background-color: rgb(233, 130, 130);
    font-weight: 700;
}

#logout2{
    display: none;
    background-color: transparent;
    width: 120px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin-top: 4px;
    outline: none;
    cursor: pointer;
    transition: .5s;
    background-color: rgb(233, 130, 130);
    font-weight: 700;
}
#login:hover {
    background-color: white;
}

#logout:hover {
    background-color: white;
}

#signup:hover{
    background-color: white;
}

#profile{
    margin-right: 8px;
}

@media (max-width: 1050px){
    #nav-links3{
        margin-left: 20vw;
    }
}


@media (max-width: 750px) {
    nav{
        width: 100%;
    }
    #logout2{
        display: block;
        margin-right: 10px;
    }
    #nav-links{
        display: none;
    }
    #nav-links3{
        display: none;
    }

    a{
        color: red;
    }
    #main-img{
        height: 22vh;
    }

    .coordinates{
       width: 50%;
    }
    #signup2{
        display: block;
    }
    #login2{
        display: block;
    }
}

@media (max-width: 500px) {
    #nav-links a{
        display: none;
    }
    #logout2{
        font-size: 0px;
        width: 35px;
        margin-right: 10px;
    }
    #logout2 i{
        font-size: 20px;
        width: 20px;
    }
    #login2{
        height: 30px;
        width: 90px;
        font-size: 12px;
       
    }
    #signup2{
        height: 30px;
        width: 90px;
        font-size: 12px;
        margin-right: 5px;
    }
    
    a{
        color: red;
    }
    #main-img{
        height: 22vh;
    }
    .coordinates{
       width: 50%;
    }
}