body {
    background-color: beige;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    margin: 0;
}
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.buttons a {
    text-decoration: none;
    color: white;
    background-color: #4CAF50;
    padding: 15px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.buttons a:hover {
    background-color: #45a049;
    transform: scale(1.05);
}
