* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body, html {
    height: 100%;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("2022-11-18.jpg") center center / cover no-repeat;
    color: #fff;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.content {
    position: absolute;
    z-index: 2;
    max-width: 90%;
}

.top-left {
    top: 40px;
    left: 40px;
}

.top-left h1 {
    font-size: 48px;
    font-weight: bold;
}

.top-left p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.bottom-left {
    bottom: 40px;
    left: 40px;
}

.bottom-left h2 {
    font-size: 32px;
    font-weight: bold;
}

.bottom-right {
    bottom: 40px;
    right: 40px;
    text-align: right;
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .top-left h1 {
        font-size: 32px;
    }

    .bottom-left h2 {
        font-size: 22px;
    }

    .bottom-right {
        font-size: 14px;
    }
}
