body {
    background-color: black;
    font-size: min(8vh, 12vw);
    text-decoration: bold;
    color: red;

    width: 100%;
    height: 100%;
    margin: 0px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

body > * {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.title {
    grid-column: span 4;
    border-bottom: 4px solid red;
}

.button {
    /* background-color: red;
    color: black; */
    /* border-radius: 50%; */
}
