body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
}

.container {
    display: flex;
    gap: 40px;
}

.button {
    display: inline-block;
    padding: 30px 60px;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    border-radius: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    min-width: 250px;
}

.button:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
}

header {
    position: absolute;
    top: 50px;
    text-align: center;
    color: #333;
}

h1 {
    font-size: 3em;
    margin: 0;
}