@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

html, html * {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

html, body {
    background-color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    height: 100%;
    margin: 0;
}

.img-responsive {
    display: block;
    max-width: 100%;
    width: auto;
}

.container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.logo {
    background-color: #FFFFFF;
    display: block;
    max-width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    padding: 16px;
    width: 288px;
}

.message {
    font-size: 20px;
}


@media (prefers-color-scheme: dark) {
    html, body {
        background-color: #111111;
        color: #FFFFFF;
    }
}
