html {
    height: 100%;
}

.floating-button{
    display: none;
}

body{
    background-color: white;
    display: flex;
    justify-content: start;
    
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

aside{
    background-color: #ffad94;
    margin-left: 0px;
    margin-bottom: 0px;
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: solid 1px #693423;
}

aside img{
    width: 90%;
    margin-top: 20px;
}

.link-container{
    width: 90%;
    height: fit-content;
    margin: auto;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.link-container a{
    width: 100%;
    height: fit-content;
    margin-top: 30px;
    font-size: 20px;
    color: rgba(37, 37, 37, 0.667);
    text-decoration: none;
    transition: 0.2s;
    
}

.link-container a:hover{
    color: white;
    transform: scale(120%) translateX(10%);
}

#activeLink{
    color: rgba(0, 0, 0, 0.815);
    font-size: 22px;
}

#logout{
    color: rgb(250, 83, 83);
}


@media (max-width: 600px) {

    html{
        height: 100vh;
        overflow-y: scroll;
    }

    .floating-button{
        display: flex;
        position: absolute;
        padding: 5px;
        font-size: 2rem;
        right: 5%;
        top: 1.5%;
        border: 1px #693423 solid;
        background-color: #ffad94;
        border-radius: 5px;
        color: #693423;
        z-index: 16;
    }
        
    body{
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        font-family: "Funnel Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: normal;
        font-style: normal;
        width: 100%;
        height: 100%;
    }

    aside{
        background-color: #ffad94;
        position: absolute;
        left: -70%;
        top: 0;
        margin-left: 0px;
        margin-bottom: 0px;
        width: 70%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-right: solid 1px #693423;
        z-index: 20;
        transition: 1s;
        
    }

    .link-container{
        width: 90%;
        height: fit-content;
        margin: auto;
        margin-top: 20px;
        margin-left: 15px;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        overflow-y: scroll;
    }

    .link-container a{
        width: 100%;
        height: fit-content;
        margin-top: 30px;
        font-size: 1.2rem;
        color: rgba(37, 37, 37, 0.667);
        text-decoration: none;
        transition: 0.2s;
        
    }

    .link-container a:hover{
        color: white;
        transform: scale(120%) translateX(10%);
    }

    #activeLink{
        color: rgba(0, 0, 0, 0.815);
        font-size: 22px;
    }

    #logout{
        color: rgb(250, 83, 83);
    }
  }