* {
    font-family:'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    object-fit: contain;
    overflow: hidden;
}

header img {
    padding: 30px 30px 0;
    width: 120px;
    position: relative;
    z-index: 9999;
}

main {
    height: 100%;
    width: 100%;
    /* background: url(site-html/assets/img/dois-lutadores-de-judo-mostrando-suas-habilidades-tecnicas-no-clube-da-luta.jpg) no-repeat center center; */
    /* background-color: #0B3A63; */
    background-size: cover;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    position: relative;
    justify-content: center;
    overflow: hidden;
    /* padding: 30px; */
}

.container {
    /* width: 100%; */
    max-width: 880px;
    /* margin: 0 auto 120px; */
    display: flex;
    /* justify-content: end; */
    position: relative;
    z-index: 9;
}

.container img {
    display: none;
}

main h1 {
    font-size: 36px;
    color: #0B3A63;
    line-height: 1.1em;
    /* padding: 30px 30px 60px; */
    position: relative;
    z-index: 9999;
    padding: 30px;
}

main:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0B3A6392, transparent);
    pointer-events: none;
}

@media(min-width:1024px) {
    header img {
        display: none;
        width: 120px;
    }

    main {
        align-items: self-end;
        justify-content: flex-end;
    }

    main:after {
        background: linear-gradient(to top, #0B3A6329, transparent);
    }

    .container {
        width: 100%;
        max-width: 880px;
        margin: 0 auto 160px;
        display: flex;
        flex-direction: column;
        /* align-items: end; */
        gap: 20px;
    }

    .container img {
        display: block;
        width: 100px;
        /* transform: translateX(-90px); */
    }

    main h1 {
        padding: 0;
        font-size: 40px;
    }
}

@media(min-width:1920px) {
    .container {
        max-width: 1440px;
        margin: 0 auto 240px;
    }

    .container img {
        width: 200px;
    }

    main h1 {
        font-size: 52px;
    }
}