.header{
    position: fixed;
    display: flex;
    top: -100vh;
    left: 0;
    background-color: rgba(222, 248, 225, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 100vh;
    width: 100%;
    transition: all 0.7s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 99999;
}

.header-links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: auto;
    text-align: center;
}

.header-text{
    line-height: 0px;
    background-color: rgba(255, 255, 255, 0);
    height: 50px;
    width: 130px;
    color: black;
    transition: all 0.2s;
    font-size: 20px;
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 20px;
}

.header-text:hover{
    background-color: rgb(197, 255, 255, 0.8);
    transform: scale(1.1);
}

.header-text:active{
    transform: scale(0.9);
}

.header-button {
    display: flex;
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: rgb(185, 255, 191);
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    right: 20px;
    top: 20px;
    z-index: 99999;
    transform: rotate('90deg');
}

.header-button:hover{
    background-color: #6cf57e;
}

.header-button:active{
    transform: scale(0.9) translateY(1px)
}

.accs{
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.2s;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    height: 50px;
    width: 130px;
    border-radius: 15px;
}

.accs:hover{
    transform: scale(1.2);
    box-shadow: 0 3px 10px 0px rgba(197, 255, 255, 0.8);
}

.acchover {
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.2s;
    height: 25px;
    margin-top: 10px;
}

.acchover:hover{
    transform: scale(1.3);
    margin: 10px 0 10px 0;
}