body {
    background-color: #000000;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    text-align: center;
}

.answer-text {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(203, 203, 198);
    margin: auto;
    font-size: 4vw;
}

a {
    text-decoration: none;  
    color: rgb(194, 224, 235);
}

a:hover {
    color: aqua;
    text-decoration: underline;
}