body {
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Sans", sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 680px;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.6;
}

h1 {
    color: #333;
    font-weight: 800;
    font-size: 2rem;
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
    padding-top: 1rem;
}

a {
    color: #414fb4;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.links {
    margin-top: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1em;
}