html {
    height: 100vh;
}

body {
    height: 100%;
    background-color: white;
    position: relative;
}

.img-container {
    /* display: flex; */
    display: none;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 400px;
}

.msg-container {
    height: 100%;
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.message {
    text-align: center;
}

@media screen and (max-width: 600px) {
    .message {
        text-align: left;
    }
}