body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fbf0d2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
}

@media screen and (min-width: 400px) {
    .logo img {
        max-height: 350px;
    }


}

@media screen and (min-width: 900px) {
    .logo img {
        max-height: 600px;
    }
}