*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: cursive;
}

/* 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 ul {
    display: flex;
    gap: 20px;
    margin-right: 30px;
}
nav ul li {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 20px;
    
}
nav ul 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;
}

#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;
}
#login:hover {
    background-color: white;
}

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

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

#profile{
    margin-right: 8px;
}



@media (max-width: 750px) {
    nav ul {
        gap: 11px;
    }
    a{
        color: red;
    }
    #main-img{
        height: 22vh;
    }
}