body {
    margin: 0 2vw;
    padding: 0 4vw 4vh;

    display: flex;
    justify-content: space-between;
}

#settings {
    display: none;
    transition: 0.2s;
    background-color: white;
    box-shadow: 1px 1px 4px 2px darkgrey;
    position: absolute;
    top: 8vh;
    left: calc(20vw - 2%);
    width: 60vw;
    padding: 2%;
}

#settings-head {
    display: flex;
    justify-content: space-between;
    margin: 0 0 2%;
}

#settings-head h2 {
    margin: 0;
}

#settings-form {
    padding: 8%;

    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-gap: 10%;
    align-items: center;
    justify-items: center;
}

#settings-form div {
    width: 80%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#settings input {
    width: 64px;
}

#settings-submit {
    margin: 4%;
    grid-column: span 2;
}

#settings input::-webkit-inner-spin-button,
#settings input::-webkit-outer-spin-button {
    display: none;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

header div {
    display: flex;
    justify-content: center;
    align-items: center;
}

header button {
    padding: 4px;
    margin: 0 4vw;
}

button svg {
    width: 20px;
    height: 20px;
}

.svg-btn {
    border: none;
    background-color: transparent;
    padding: 0px;
}

header+div {
    margin: 4vw;
    padding: 1vw;
    text-align: center;
}

article {
    margin: 8vw 0;
    box-shadow: 1px 1px 4px darkgrey;
    min-height: 12em;
    padding: 2%;
}

button {
    padding: 1vw;
}

#key-button {
    margin-top: 20%;
    width: 100%;
    aspect-ratio: 4/1;
    display: flex;
}

#list-left,
#list-right {
    margin-top: 4vh;
    padding-top: 2vh;
    width: 10vw;
    height: 80vh;
    display: flex;
    justify-content: space-around;
    box-shadow: 0.5px 0.5px 4px darkgrey;
    white-space: pre;
}

#list-left>div,
#list-right>div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#among-us {
    display: none;
    position: absolute;
    top: 25vh;
    left: 0;
    width: 20%;
}

@media only screen and (min-width: 1200px) {
    body {
        margin: 0 6vw;
        padding: 2vh 10vw 4vh;
    }

    button:hover {
        cursor: pointer;
    }

    .svg-btn:hover {
        filter: invert(0.4);
        transition: 0.2s;
    }

    header+div {
        margin: 1vh 2vw;
    }

    article {
        margin: 1vw 0 4vw;
    }

    button {
        padding: 0.1vw;
    }

    #key-button {
        margin-top: 0;
        aspect-ratio: 8/1;
    }
}