@font-face {
    font-family: "Red Hat";
    src: url("./RedHatText-Regular.woff2") format("woff2");
    font-weight: 400;
}

:root {
    --color-primary-blackish: #010e09ff;
    --color-primary-green: #043927;
    --font-primary: "Red Hat", sans-serif;
}

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

body {
    font-family: var(--font-primary);
}

.logo {
    background: url("aaltilis.png") no-repeat center / contain;
    width: 20rem;
    height: 20rem;
    align-self: flex-end;
    margin-right: 10rem;
}

.hero {
    display: flex;
    background: var(--color-primary-green);
    height: 100vh;
    /*align-items: center;*/
    justify-content: center;
    flex-direction: column;
    padding: 4rem;
    gap: 1rem;
}

.hero h1 {
    color: white;
    font-size: 4rem;
}

.hero h2 {
    color: white;
    font-size: 2rem;
    font-weight: 400;
}

.intro {
    display: flex;
    background: white;
    height: 80vh;
    justify-content: center;
    flex-direction: column;
    padding: 4rem;
    gap: 1rem;
    width: 70%;
}

.intro-area {
    margin-bottom: 3rem;
}
.intro h1 {
    font-size: 2.5rem;
}

.intro h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .logo {
        width: 6rem;
        height: 6rem;
        margin-right: 5rem;
    }
    .hero {
        padding: 2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .intro {
        width: 100%;
        padding: 2rem;
        height: auto;
    }

    .intro h1 {
        font-size: 1.8rem;
    }

    .intro h2 {
        font-size: 1.1rem;
    }
    .footer {
        /*background: var(--color-primary-blackish);*/
        display: flex;
        height: 2vh;
        justify-content: center;
    }

    .footer h3 {
        font-size: 0.25rem;
        color: slategray;
    }
}

.footer {
    /*background: var(--color-primary-blackish);*/
    display: flex;
    height: 5vh;
    justify-content: center;
}

.footer h3 {
    font-size: 0.7rem;
    color: slategray;
}
