body {
    background: url("/static/background.png") no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    font-family: "Georgia", serif;
    text-align: center;
}

.container {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    width: 50%;
    margin: auto;
    margin-top: 10%;
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.5);
}

h1 {
    font-size: 32px;
    text-shadow: 0 0 20px #00ffcc, 0 0 30px #00ffcc;
}

h2 {
    font-size: 24px;
    text-shadow: 0 0 15px #ffcc00, 0 0 25px #ffcc00;
}

.button {
    background: linear-gradient(45deg, #4b0082, #8a2be2);
    color: white;
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.button:hover {
    background: linear-gradient(45deg, #8000ff, #00ffcc);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}
