:root {
    --primary-color: #6EE6E6;
    --secondary-color: #003940;
    --site-font: "N27", Arial, sans-serif;
    --paragraph-font: "Open Sans", Arial, sans-serif;
}

@font-face {
    font-family: "N27";
    src: url("N27-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("OpenSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--secondary-color);
    color: white;
    font-family: var(--site-font);
}

.inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    min-height: 100lvh;

    @media (min-width: 70rem) {
        justify-content: center;
    }

}

main {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 6.25rem 1.25rem 0;
    gap: 7.5rem;

    @media (min-width: 70rem) {
        flex-direction: row;
        padding: 0;
    }
}


.marked {
    color: var(--primary-color);
}

.logo {
    width: 10.875rem;

    @media (min-width: 70rem) {
        width: 22.5rem;
    }
}

.content {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;

    @media (min-width: 70rem) {
        gap: 3.25rem;
    }
}

h1 {
    font-size: 2.5rem;

    @media (min-width: 70rem) {
        font-size: 4.375rem;
    }
}

p {
    font-family: var(--paragraph-font);
    font-size: 1rem;

    @media (min-width: 70rem) {
        font-size: 1.75rem;
    }
}

button {
    width: max-content;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 3.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    cursor: pointer;

    @media (min-width: 70rem) {
        font-size: 1.125rem;
    }
}
