:root {
    --color-bg: #ecf9f8;
    --color-primary: #1fb2a8;
    --color-secondary: #d31c51;
    --color-text: #4f4f4f;
}

@font-face {
    font-display: swap;
    font-family: 'Calibri';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/calibri/calibri-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Calibri';
    font-style: italic;
    font-weight: 400;
    src: url('/assets/calibri/calibri-italic.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Calibri';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/calibri/calibri-bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Calibri';
    font-style: italic;
    font-weight: 700;
    src: url('/assets/calibri/calibri-bold-italic.woff2') format('woff2');
}

body {
    color: var(--color-text);
    font-family: 'Calibri', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    overflow: hidden;
}

.layout {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

@media (min-width: 900px) {
    .wrapper {
        margin-bottom: -4vw;
    }
}

@media (min-width: 1600px) {
    .wrapper {
        margin-bottom: -6vw;
    }
}

.logo {
    width: 100%;
    max-width: 30rem;
    margin-inline: auto;
    display: block;
}

@media (min-width: 900px) {
    .logo {
        padding-top: 6vw;
    }
}

.logo img {
    width: 100%;
    height: auto;
}

h1 {
    max-width: 40rem;
    margin-inline: auto;
    margin-top: 4rem;
    margin-bottom: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

@media (min-width: 900px) {
    h1 {
        font-size: 4rem;
    }
}

svg {
    width: 1.15rem;
    height: 1.15rem;
}

.curved-bg {
    background-color: var(--color-bg);
    padding-block: 2rem;
    margin-block: 12vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.curved-bg::before,
.curved-bg::after {
    content: '';
    background-image: url('curve.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    aspect-ratio: 2492 / 374;
    position: absolute;
}

.curved-bg::before {
    bottom: 100%;
}

.curved-bg::after {
    top: 100%;
    rotate: 180deg;
}

.info p strong {
    font-weight: 700;
}

.info ul {
    margin-top: 1rem;
}

.info li {
    margin-block: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.info a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.info a:hover {
    color: var(--color-secondary);
}
