body {
    -webkit-text-stroke: 1px black;
    font-family: "Comic Sans MS", "Arial";
    background-color: red;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

h1 {
    font-size: 3rem;
}

button {
    -webkit-text-stroke: 0px;
    background-color: white;
    color: #222222;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
}
button:hover {
    background-color: #222222;
    color: white;
    cursor: pointer;
}

.hlink {
    text-decoration: none;
}