body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
}

header p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.button {
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #555;
    color: #fff;
}
