html {
    font-family:'Montserrat'
}

a {
    text-decoration: none!important;
    color: inherit;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

p,
li {
    line-height: 150%;
}

h1 {
    text-transform: uppercase;
}

h2 {
    text-transform: uppercase;
    font-size: 200%;
    position: relative;
    color: teal;
    display: inline-block;
    line-height: 150%;
    margin: 0;
}

p span {
    position: relative;
    color: teal;
}

h2 span {
    color: teal;
    text-decoration: underline;
    text-decoration-color: goldenrod;
    text-decoration-thickness: 6px;
    text-underline-offset: 8px;
}

.section {
    width: 92%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1080px) {
    .section {
        padding: 0 2rem;
    }
}

.hero-section {
    width: 100%;
}

.hero-image {
    position: relative;
    max-height: 1000px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.hero-image video,
.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: min(90%, 75%);
    max-width: 1080px;
    margin: 0;

    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1;
    font-weight: 700;

    color: white;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 10px 15px rgba(0,0,0,0.5);

    z-index: 10;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.15) 25%,
        rgba(0,0,0,0) 50%
    );
    z-index: 1;
}

.hero-image h1 {
    z-index: 2;
}

.link-button {
    display: inline-block;
    background-color: goldenrod;
    color: white;
    border-radius: 2em;
    padding: 0.5em 0.8em;
    transition: transform 0.2s ease;
}

.link-button:hover,
.link-button:focus-visible {
    transform: scale(1.04);
}

.link-button p {
    font-weight: bold;
    padding: 0;
    margin: 0;
}