body {
    -webkit-text-stroke: 1px black;
    font-family: 
        "Comic Sans MS",    /* Windows & macOS (if Office is installed) */
        "Comic Sans",       /* Universal fallback name */
        "Chalkboard SE",    /* iOS & macOS native alternative */
        "Comic Neue",       /* Linux (Modern open-source replacement) */
        "COMIC10",          /* Linux (Older fallback) */
        sans-serif;
    color: white;
    background-color: #222222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
button {
    background-color: aqua;
    color: green;
    -webkit-text-stroke: 0px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
}
button:hover {
    background-color: aquamarine;
    color: blueviolet;
    -webkit-text-stroke: 0px;
    cursor: pointer;
}
.blue {
    color: blue;
    -webkit-text-stroke: 3px white;
}

h1 {
    font-size: 5rem;
}

h3 {
    font-size: 2rem;
}

p {font-size: 1.5rem;}

.fourofour {
    background-color: red;
    color: white;
    -webkit-text-stroke: 1px black;
}

.fourbutton {
    background-color: white;
    color: #222222;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
}
.fourbutton:hover {
    background-color: #222222;
    color: white;
    cursor: pointer;
}