/* Center content both vertically and horizontally */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 100vh; /* Full viewport height */
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: #222;
}

a {
    font-size: 1.4rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

a:hover {
    color: #000;
}
