@font-face {
    font-family: 'ComicSans';
    src: url('/fonts/COMICBD.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: red;
    color: white;
    /*add large bold font*/
    font-size: 24px;
    font-weight: bold;
    font-family: 'ComicSans';
}

.gopsucks {
    text-align: center;
    margin-top: 20%;
    font-size: 48px;
    overflow-wrap: break-word;
}

#source {
    color: black;
    font-size: 12px;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
}

.button {
    background-color: white;
    color: red;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
}

.button.sm {
    background-color: white;
    color: red;
    border: none;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: lightgray;
}