/* mulish-200 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/mulish-v18-latin_latin-ext-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* mulish-600 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/mulish-v18-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


* {
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Mulish';
    font-weight: 200;
    font-size: 1rem;
}
#page {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: url('../images/logo-illustration.jpg') 0 0 no-repeat;
    background-size: auto 100%;

}
@supports (height: 100svh) {
    #page {
        height: 100svh;
    }
}
#page > div {
    margin-top: 20vh;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: hsla(0, 0%, 100%, .25);
}
.text-center {
    text-align: center;
}
h1 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    margin: 1.5rem 0;
}
p {
    line-height: 1.5rem;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    #page {
        align-items: center;
    }
    #page > div {
        margin-top: 0;


    }
    img {
        width: 200px;
        height: auto;
    }
    h1 {
        margin: 1rem 0;
    }
}