@font-face {
    font-family: 'Asap';
    src: url('Asap-Regular.otf') format('opentype');
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Asap';
    src: url('Asap-Medium.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Symbola';
    src: url('Symbola.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
}
html {
    font-family: 'Asap', sans-serif;
    color: white;
    background-color: #222;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    background: url('jezioro.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
div.background {
    background: #39fa;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 35px;
}
span {
    font-size: 1.5em;
}
.big {
    font-size: 2.5em;
    margin: 5px;
}
h1 {
    font-weight: 700;
}
span.icon {
    font-size: 5em;
    margin: auto 20px auto 0;
    font-family: 'Symbola', sans-serif;
}
.h-flex {
    display: flex;
    flex-direction: row;
}
@media all and (max-width: 540px) {
    .h-flex {
        flex-direction: column-reverse;
        align-items: center;
    }
    h1, span {
        text-align: center;
    }
    div.background {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 15px auto;
        width: 100%;
    }
}
@media all and (max-width: 400px) {
    .big {font-size: 1.95em;}
    span.icon {font-size: 4em;}
    span {font-size: 1.2em;}
}
@media all and (max-width: 300px) {
    .big {font-size: 1.3em;}
    span.icon {font-size: 3em;}
    span {font-size: 1em;}
}
.v-flex {
    display: flex;
    flex-direction: column;
}
div {
    margin: auto;
}
.soon {
    position: absolute;
    bottom: 5%;
}