/* hero */

#hero {
    position: relative;
    background-image: url('/static/hero.png');
    background-size: cover;
    background-position: center;
    height: 512px;
}

#dark-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

#hero content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

#herocontainer-left h1 {
    font-size: 2.5em;
}

#hero img {
    height: 256px;
    margin-right: 20px;
    border-radius: 12px;
}

/* divs */

.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0px;
}

.section content {
    max-width: 1200px;
    margin: 0 auto;
}

/* section 1 */

#stats content {
    width: 900px;
    text-align: center;
}

#number-boxes {
    display: flex;
}

#number-boxes div {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    margin: 10px;
    border-radius: 4px;
}