* {
    border: 0;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    color: white;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
}

h1 {
    font-size: 2.6em;
}

p {
    font-size: 1.15em;
    margin-top: 20px;
    font-weight: 200;
    font-style: italic;
}

#mainBlock {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: fit-content;
    text-align: center;
    min-width: 340px;
    max-width: 780px;
    width: 70%;
}

.links {
    margin-top: 20px;
    height: 45px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.links>a {
    width: 98%;
    padding: 5px 1%;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease, color 0.3s ease;
    font-weight: 900;
}

a {
    text-align: center;
    color: white;
    border-bottom: 1px solid transparent;
    text-decoration: none;
}

.links.four>a {
    width: 23%;
}

.links.three>a {
    width: 31%;
}

.links.two>a {
    width: 48%;
}

a.back {
    font-size: 0.8em;
    padding: 5px 10px;
}

a:hover {
    border-bottom: 1px solid white;
    color: #b7b7b7;
}

@media only screen and (hover: none) and (pointer: coarse) {
    .links>a {
        text-decoration: underline;
    }
}