@font-face {
    font-family: 'ComicRelief-Regular';
    src: url('/font/ComicRelief-Regular.ttf');
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px;
    /* font-family: Arial, Helvetica, sans-serif; */
    /* font-family: "Comic Sans MS", "Comic Sans", cursive; */
    font-family: "ComicRelief-Regular", sans-serif;
    color: #535b6d;
}

h1 {
    text-align: center;
    margin: 24px 0;
    color: black;
}

/* h2:not(:first-of-type) {
    margin-top: 100px;
} */

h2 {
    margin-top: 20px;
    color: black;
}

a {
    color: #3c80ff;
    text-decoration: none;
}

a:hover {
    color: #93b9ff;
}

button {
    display: block;
    padding: 12px;
    border: none;
    /* background-color: #4792fb; */
    background: radial-gradient(ellipse 100% 200% at center, #93b9ff 0%, #3c80ff 100%);
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    /* background-color: #6daaff; */
    background: radial-gradient(ellipse 100% 200% at center, #b5cfff 0%, #5ca0ff 100%);
}

button:disabled {
    background: radial-gradient(ellipse 100% 200% at center, #b0b0b0 0%, #7f7f7f 100%);
    cursor: not-allowed;
}

.footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: center;
}