body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
    width: 60vw;
}

.container h1 {
    font-size: 60pt;
    color: #32cd32;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.container p {
    font-size: 14pt;
    margin-bottom: 30px;
    color: #98fb98;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.buttons a {
    padding: 15px 25px;
    border: 2px solid #32cd32;
    border-radius: 10px;
    background-color: black;
    color: #32cd32;
    text-decoration: none;
    font-size: 12pt;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(50, 205, 50, 0.1);
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.buttons a:hover {
    background-color: #32cd32;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(50, 205, 50, 0.3);
}
