body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ⬆️ aligns content to the top */
    align-items: center;         /* ⬅️ centers horizontally */
    padding-top: 100px;          /* ⬆️ pushes content down slightly */
    background-color: #f9f9f9;
}

h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

.button {
    padding: 20px 40px;
    font-size: 24px;
    background-color: #0078D7;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #005fa3;
}