margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 0vh;
background-color: #000000;
color: white;
font-family: 'Comic Sans MS', cursive, sans-serif;
}

.text {
color: yellow;
font-weight: bold;
text-align: center;
font-size: 24px;
margin: 10px 0;
}

footer {
background-color: #000000;
color: white;
text-align: center;
font-size: 9pt;
padding: 5px;
position: relative;
bottom: 0;
width: 100%;
}

button {
background: transparent;
border: 0;
cursor: pointer;
}

.curse {
color: red;
font-weight: bold;
}
h1 {
font-size: 48px;
font-weight: bold;
}
body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column; /* Ensure this allows vertical stacking */
}

.container {
max-width: 880px;
padding: 20px;
text-align: left;
}
.updates-button {
display: inline-block;
margin-top: 10px;
padding: 12px 12px;
background: linear-gradient(135deg, #ffcc00, #ff6600);
color: black;
font-family: 'Comic Sans MS', cursive, sans-serif;
font-size: 18px;
font-weight: bold;
text-decoration: none;
border: 2px solid white;
border-radius: 12px;
box-shadow: 0 0 10px #ff6600;
transition: transform 0.0s ease, box-shadow 0.0s ease;
}

.updates-button:hover {
transform: scale(1.05);
box-shadow: 0 0 0px #ff6600;
}


