/* START STYLE RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    /* font-size: 100%; */
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ol,
ul,
li {
    list-style: none;
    color: #000;
}

a {
    color: #000;
}

/* END STYLE RESET */

::selection {
    background: #000000;
    color: #ffffff;
}

::-webkit-selection {
    background: #ffffff;
    color: #000;
}



body {
    line-height: 1;
    color: #121212;

    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background: #F4F4F4;


}

html,
body {
    width: 100%;
    /* overflow: hidden; */
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
}

#container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#logo-soon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(var(--vh, 1vh) * 100);
}

#logo-soon {
    width: 400px;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    user-select: none;
}

p {
    font-size: 1.2rem;
    margin-top: 14px;
    font-family: "neue-haas-grotesk-display", sans-serif;

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


@media (max-aspect-ratio: 6/8) {
    #logo-soon {
        width: 270px;
    }

    p {
        font-size: 1rem;
        margin-top: 10px;
    }
}