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

.container {
    max-width: 90%;
    padding: 20px;
}

.logo {
    max-width: 50%; /* Adjusted to make the image half the size */
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.5em;
    margin: 0;
}

@media (max-width: 600px) {
    .logo {
        max-width: 40%; /* Further reduce size on smaller screens */
    }

    h1 {
        font-size: 1em;
    }
}