body {
    margin: 0;
    background-color: black;
    height: 100vh
}
.phrases {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-items: center;
    margin: 0;
    padding-top: 20vh;
}
.phrases .button {
    width: 21vw;
    height: 32.5vh;
    display: block;
    padding: 0;
    margin: 10px;
    position: relative;
    background-color: white;
    box-shadow: 5px 5px rgb(96, 96, 96);
    border-radius: 15px;
    cursor: pointer;
    transition: box-shadow .1s, left .1s, top .1s;
    left: 0;
    top: 0;
}

.phrases .button span {
    width: 80%;
    height: 80%;
    display: flex;
    font-family: sans-serif;
    font-size: 25px;
    text-align: center;
    text-wrap: balance;
    color: black;
    line-height: normal;
    align-items: center;
    justify-content: center;
    padding: 10%;
    pointer-events: none;
    user-select: none;
}
.button div {
    aspect-ratio: 1/1;
    width: calc(2.5vw + 2.5vh);
    border: 2px rgb(96, 96, 96) solid;
    border-radius: 15px;
    position: absolute;
    bottom: 5px;
    text-align: center;
    line-height: calc(2.5vw + 2.5vh);
    left: 0;
    right: 0;
    margin-inline: auto;
    user-select: none;
}

header {
    position: fixed;
    margin: 0;
    top: 0;
    width: 100vw;
    height: 10vh;
    border-bottom: 2px solid white;
}

header .logo {
    aspect-ratio: 463/516;
    position: static;
    margin: auto;
    display: block;
    margin-top: 1.5vh;
    height: 7vh;
    background-image: url(/images/deepwoken_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
}
header .menubutt {
    background-image: url(/images/menu_arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    float: left;
    position: absolute;
    aspect-ratio: 1/1;
    height: 5vh;
    top: 2.5vh;
    left: 2.5vh;
    cursor: pointer;
    rotate: 0deg;
    transition: rotate 0.3s;
}

.menubutt.active {
    rotate: 180deg;
}
header .menu {
    min-width: 300px;
    width: 30vw;
    left: calc((-300px - 30vw));
    top: calc(10vh + 2px);
    height: 90vh;
    background-color: black;
    position: absolute;
    transition: left 0.3s;
    border-right: 2px white solid;
}

header .quote {
    right: 0;
    position: absolute;
    display: flex;
    color: rgb(40, 40, 40);
    top: 0;
    height: 10vh;
    line-height: 3vh;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-wrap: pretty;
    width: 25vw;
    padding-left: 25px;
    padding-right: 25px;
    font-family: sans-serif;
    cursor: default;
}

.menu.active {
    left: 0;
}
.menu div {
    width: 80%;
    margin: 5%;
    background-color: white;
    border-radius: 15px;
    align-items: center;
    text-align: center;
    padding: 15px;
}
.menu div.keybinds {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-content: center;
    place-items: center;
    height: 50vh;
    padding: 10px;
    padding-top: 50px;
}
.keybinds .title {
    position: absolute;
    width: 100%;
    text-align: center;
    color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    pointer-events: none;
    font-family: sans-serif;
    font-size: 20px;
    user-select: none;
}
.keybinds .button {
    display: block;
    margin: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: white;
    border: 2px rgb(96, 96, 96) solid;
    cursor: pointer;
    left: 0;
    top: 0;
    box-shadow: 5px 5px rgb(96, 96, 96);
    transition: all .1s;
    position: relative;
    user-select: none;
    padding: 0;
}

.keybinds .button span {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items:center;
    justify-content: center;
    padding-left: calc(1% + 1px);
}
.keybinds .button div {
    aspect-ratio: 1/1;
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 1px;
    bottom: 1px;
    width: 1%;
    margin: 0;
    line-height: 0;

}



.button.active {
    left: 5px;
    top: 5px;
    box-shadow: 0px 0px rgb(96, 96, 96);
}