body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    width: 60%;
    max-width: 300px;
}

h1 {
    color: #333333;
}

p {
    color: #666666;
}

/* Responsive design */
@media only screen and (max-width: 600px) {
    .logo {
        width: 80%;
    }
}
