* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.message {
    font-size: 1.5rem;
    color: #333;
}

@media (max-width: 600px) {
    .message {
        font-size: 1.2rem;
    }
}