.page-banner{
    aspect-ratio: 72/25;
    position: relative;
    z-index: 1;
    >img{
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
    }
    >div{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        >h1{
            color: white;
        }
    }
}

@media screen and (width < 1024px) {
    .page-banner{
        aspect-ratio: 16 / 9;
    }
}

@media screen and (width < 768px) {
    .page-banner{
        aspect-ratio: 4 / 3;
    }
}

@media screen and (width < 576px) {
    .page-banner{
        aspect-ratio: 3 / 4;
    }
}