body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    color: #333;
}

p {
    font-size: 1.2rem;
    color: #666;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

a {
    font-size: 1rem;
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}