/* styles.css */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.message {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.link {
    font-size: 18px;
    color: #0070c9;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}
