/*default settings for everything*/
*
{

    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;

    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    min-height: 100vh;
    width: 100%;
}

/* Default: Extra-small devices such as small phones (less than 640px) */

/*Main navigation*/
#navigation
{
    width: 100%;
    height: 70px;
    background-color: #2BAE66;
    color: #FCF6F5;
    font-size: 2.5rem;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    position: relative;
    top: 0;
    z-index: 3;

    padding: 0 20px;
}

#logoContainer
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #FCF6F5;

    gap: 5%;
}

#logoContainer:hover
{
    transform-origin: center;
    scale: 1.1;
}


#burgerButton
{
    height: 25px;
    width: 25px;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#burgerButton *
{
    height: 20%;
    width: 100%;
    background-color: #FCF6F5;
    transition: 500ms;
}

/*Burger Navigation*/
#burgerNavigation
{
    width: 100%;
    background-color: #2BAE66;
    color: #FCF6F5;
    font-size: 1.8rem;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    position: absolute;
    top: 0;
    z-index: 1;
    transform: translateY(-100%);
    transition: 500ms;

    padding: 0 0 10px 0;
}

.navigationLinks
{
    width: 100%;

    display: flex;
    letter-spacing: 5px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navigationLinks li a
{
    color: #FCF6F5;
    cursor: pointer;
}

.navigationLinks li a:hover
{
    text-decoration: underline;
}

.userButtons
{
    margin-top: 10px;
    border: 2px solid black;
    display: flex;
}

.userButtons.primary
{
    display: none;
}


.settingsButton svg
{
    width: 3.5rem;
    height: 3.5rem;
    fill: white;
}

.settingsButton svg:hover
{
    fill: #dddddd;
}

.settingsButton.primary
{
    display: none;
}


.userButtons a
{
    color: black;
    font-size: 1.8rem;
    border: none;
    padding: 5px 15px;
    background-color: #FCF6F5;
    white-space: nowrap;

    cursor: pointer;
}

.userButtons a:hover
{
    background-color: lightgrey;
}


.userButtons a:nth-child(1)
{
    border-right: 2px solid black;
}

main
{
    width: 100%;
    z-index: 2;
    padding: 20px 20px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer
{
    z-index: 2;
    padding: 0 20px;
}

/* Small devices such as large phones (330px and up) */
@media only screen and (min-width: 330px)
{
    #logoImg
    {
        display: block !important;
    }
}

/* Small devices such as large phones (600px and up) */
@media only screen and (min-width: 600px)
{

}

/* Medium devices such as tablets (768px and up) */
@media only screen and (min-width: 768px)
{

}

/* Large devices such as laptops (1025px and up) */
@media only screen and (min-width: 1025px)
{
    .navigationLinks
    {
        display: flex !important;
        flex-direction: row;
        font-size: 1.8rem;
        gap: 20px;
        letter-spacing: 0;
    }

    .userButtons
    {
        padding: 0;
        margin: 0;

        width: auto;
        height: 50%;
    }

    .userButtons.primary
    {
        display: flex;
    }


    .settingsButton.primary
    {
        display: flex;
    }



    .userButtons a
    {
        padding: 0 20px;
        width: auto;
    }

    #burgerButton
    {
        display: none;
    }

    #burgerNavigation
    {
        display: none;
    }
}

/* Largest devices such as desktops (1200px and up) */
@media only screen and (min-width: 1200px)
{
    
}