.logo {
    text-align: center;
}
.logo label {
    font-family: 'Arima Madurai', cursive;
    cursor: pointer;
    white-space: nowrap;
    color: black;
    font-size: 2em;
    font-weight: bold;
}
.logo img {
    height: 50px;
}

a {
    color: red;
    opacity: 0.8;
}
a:hover {
    color: red;
    opacity: 0.5;
    text-decoration: none;
}

#container {
    display: flex;           
    flex-direction: column;  
    justify-content: center; 
    align-items: center;
    padding: 10px;
    min-height: 100vh;
}

.box {
    width: 500px; 
}

@media(max-width: 576px) {
    #container {
        padding: 0px 10px;
    }
    .box {
        width: 100%;
    }
}