body {
    background-color: #D8A24A;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent; /* Fully removes tap delay */
    -webkit-touch-callout: none; /* Disables iOS long press */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main_container {
    width: 80vw;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.logo_container{
    width: 70%;
    max-width: 300px;
}

.logo_container img {
    width: 100%;
    height: auto;
    display: block;

}

@media (min-width: 768px) {
    .main_container {
        max-width: 600px;
    }

    .logo_container {
        max-width: 400px;
    }
}

@media (max-width: 375px) {
    .logo_container {
        max-width: 200px;
    }
}
