body {
    background-image: url("/static/twinkle.gif");
    background-repeat: repeat;
    color: #ffffff;
    font-family: 'Comic Sans MS', sans-serif;
    text-align: center;
}

h1 {
    font-size: 48px;
    color: #ff0000;
    text-shadow: 2px 2px 0px #000000, 4px 4px 5px #ff9900;
    font-weight: bold;
    font-family: 'Comic Sans MS', sans-serif;
    letter-spacing: 2px;
    animation: flicker 1.5s infinite alternate;
    display: inline-block;
}

h2 {
    font-size: 24px;
    color: #ff0000;
    text-shadow: 2px 2px 0px #000000, 4px 4px 5px #ff9900;
    font-weight: bold;
    font-family: 'Comic Sans MS', sans-serif;
    letter-spacing: 2px;
    animation: flicker 1.5s infinite alternate;
    display: inline-block;
}

/* Flicker animation */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow: 2px 2px 0px #000000, 4px 4px 5px #ff9900, 0 0 5px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000, 0 0 25px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000;
    }
    20%, 24%, 55% {
        opacity: 0.5;
        text-shadow: none;
    }
}

a {
    text-decoration: underline;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000000;
    margin: auto;
}

.normal {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: normal;
    text-shadow: 1px 1px 2px #000000;
    margin: auto;
}

.hbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.vbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

a:hover {
    color: #ff00ff;
}

.center {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.box {
    width: 1100px;
    margin: 50px auto;
    padding: 20px;
    background-color: #00000000;
    border: 5px solid #ffffff;
    box-shadow: 10px 10px 0px #ff0000;
    text-align: left;
    font-size: 18px;
    color: #000000;
    padding-top: 50px;
    padding-bottom: 50px;
}

.button {
    background-color: #ff0000;
    color: #ffffff;
    border: 3px solid #ffffff;
    padding: 15px 30px;
    font-size: 24px;
    cursor: pointer;
    text-shadow: 2px 2px #000000;
    box-shadow: 5px 5px 0px #000000;
}
.changelog
{
    text-decoration: underline;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000000;
    margin: auto;
    margin-left: 1000px;
}
button {
    background-color: #ff0000;
    color: #ffffff;
    border: 3px solid #ffffff;
    padding: 15px 30px;
    font-size: 24px;
    cursor: pointer;
    text-shadow: 2px 2px #000000;
    box-shadow: 5px 5px 0px #000000;
}

.button:hover {
    background-color: #00ff00;
    color: #000000;
    text-shadow: 2px 2px 4px #ffffff;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    a {
        font-size: 20px;
    }

    .normal {
        font-size: 20px;
    }

    .box {
        width: 90%;
        font-size: 16px;
    }

    .button {
        font-size: 20px;
        padding: 10px 20px;
    }
}

@media (max-width: 1100px) {
    h1 {
        font-size: 28px;
    }

    a {
        font-size: 18px;
    }

    .normal {
        font-size: 18px;
    }

    .box {
        width: 90%;
        margin: 20px auto;
        padding: 10px;
        font-size: 14px;
    }

    .hbox {
        flex-direction: column; 
        gap: 20px;
    }

    .button {
        width: 100%;
        padding: 10px 0;
    }
    .changelog
    {
        margin-left: auto;
    }
}
