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

.header {
    text-align: center;
    margin-bottom: 20px;
}

h1 a {
    color: white;
    text-decoration: none;
}

.button-container {
    display: flex;
    gap: 20px;
}

button {
    padding: 10px 20px;
    background-color: #070707;
    border: 2px solid white;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: white;
    color: #070707;
}
