
.root-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

@media screen and (max-width: 480px) {
    .root-container {
        padding: 0;
    }
}

@media screen and (min-width: 480px) {
    .root-container {
        padding: 3rem;
    }
}
