/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-page white background */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #000000;
}

/* Centered text styling */
.container {
    text-align: center;
    font-size: 1.2rem;
}

a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}
