body {
    font-family: "Lucida Console", "Courier New", monospace;
    padding: 20px;
    background-image: url('./assets/absoluteshock.png'); 
    background-size: cover; 
    background-attachment: fixed;
    background-color: #f0f0f0; 
}
h1 {
    color: #000;
    text-align: center;
}
.top-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 20px;
}
.button {
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-family: "Lucida Console", "Courier New", monospace;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
}
.top-nav .button {
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white; 
}
.top-nav .button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.bottom-buttons {
    margin-top: 30px;
    text-align: center;
}
.bottom-buttons .button {
    background-color: #4CAF50;
    margin: 10px auto;
    width: 200px;
    color: white;
}
.bottom-buttons .button:hover {
    background-color: #3e8741;
}
.announcement {
    text-align: center;
    font-size: 24px;
    color: #ff0000;
    margin: 30px 0;
}
.container {
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}
