@font-face {
    font-family: 'Inter';
    src: url('../../assets/fonts/static/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../assets/fonts/static/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../assets/fonts/static/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 100%;
    color: var(--color-white);
    font-family: var(--font-family-inter);
    font-weight: var(--font-weight-regular);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    max-width: 90em;
    min-height: 100vh;
    gap: 3rem;
    padding: 1.25rem 0.625rem;
    background-color: var(--color-dark-grey);
}