body {
    margin: 0;
    
}

a {
    text-decoration: none;
    color: black;
}

textPath {
    letter-spacing: .5rem;
}

#navbar {
    background-color: white;
    display: flex;
    align-items: center;
    position: absolute;
    height: 50px;
    top: 0;
}

#logo {
    width: 50px;
    height: 50px;
}

.container_title {
    text-align: center;
    font-family: sans-serif;
    font-size: larger;
}

@media screen and (max-width: 480px) {
    body {
        /* background-color: pink; */
    }

    #logo {
    width: 50px;
    height: 50px;
    margin-left: 15px;
    }

    #dropdown {
        width: 15px;
        height: 15px;
    }

    #navbar {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100vw;
        z-index: 1;
    }

    #nav_options {
        margin: 0 auto; 
    }

    #spacer {
        margin-top: 100px;
    }

    .star {
        width: 25px;
        height: 25px;
    }
}