html,
body {
    padding: 0;
    margin: 0;
}

body {
    background-color: #fff;
}

body * {
    box-sizing: border-box;
    font-size: 16px;
    font-family: "Barlow Semi Condensed", sans-serif;
}

section#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 100dvh;
    padding: 1rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

section#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('bg-4.jpg');
    background-size: cover;
    background-position: center;
    
    pointer-events: none;
}

#content {
    max-width: 80ch;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

#content * {
    gap: 1;
}


div#logo svg {
    margin-top: 50px;
    fill: rgba(0, 0, 0, .9);
    -filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
    max-width: 70dvw;
    max-height: 100px;
}

h1 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

div#cta a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #fff;
    padding: 1em 1.5em;

    transition: all 0.3s ease;
}

div#cta a:hover,
div#cta a:focus,
div#cta a:active {
    color: #fff;
    background-color: #000;
    transform: scale(1.1);
}

div#text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -flex-grow: 1;
}


footer {
    color: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}