html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background: #1E2B3A;
    overflow-x: hidden;
    font-family: system-ui, sans-serif;
}

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-color: #1E2B3A;
    background-image: url("./images/hero.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(15,22,30,.20),
            rgba(15,22,30,.45)
        );
}

.hero__content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: white;
}

.hero__content h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 7rem);
}

.hero__content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    opacity: .85;
}