@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url(/fonts/Montserrat-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url(/fonts/Montserrat-bolditalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/Montserrat.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url(/fonts/Montserrat-bold.woff2) format('woff2');
}

body, html {
    margin: 0;
    padding: 0; 
    width: 100%;
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #15253b;
}

#splash {
    flex-grow: 1;
    box-sizing: border-box;
    width: 100%;
    max-height: 90vh;
    padding: 6rem;
    display: flex;
    @media (orientation: portrait) { flex-direction: column; }
    align-items: center;
    justify-content: center;
    gap: 4rem;
    #logo {
        width: 60%;
        height: 100%;
        overflow: hidden;
    }
    #logo img {
        width: 100%; height: 100%;
        object-fit: contain;
    }
    #splash_text {
        flex-grow: 1;
        max-width: 32rem;
        @media (orientation: portrait) { text-align: center; }
    }
}
#logo img {
    animation: logo_rotate 20s ease-in-out 0s 1 normal forwards running;
}
@keyframes logo_rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-90deg); }
}

footer {
    padding: 1rem;
    text-align: center;
    font-size: 14px;
}
