@font-face {
    font-family: "Inter";
    src: url("../fonts/pitch_regular_font.woff2") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

/* Layout */

body.main {
    height: 100vh;
    height: 100svh;
    height: 100dvh;

    overflow: hidden;

    background-color: #88F7FF;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: clamp(32px, 6vw, 78px);
}

/* Logo */

.logo {
    display: block;
    width: min(381px, calc(100vw - 64px));
    max-width: 100%;
    height: auto;
}

/* Ensure all images behave */

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

/* Mobile tweaks */

@media (max-width: 768px) {
    .logo {
        width: min(276px, calc(100vw - 64px));
    }

    .footer {
        font-size: 16px;
    }
}