.title-container{
    height: 600px;
    position: relative;

    overflow: hidden;
}

.title-container img{
    width: 100%;
    height: auto;
    /* z-index: 0; */
}

.title-container div{
    position: absolute;
    top: 10%;
    left: 15%;
    z-index: 1;

    height: 100%;
}

h1, h4{
    color: white;

    width: fit-content;
    height: fit-content;

    padding: 20px 70px 20px 70px;
    border-radius: 200px;
    /* background: rgb(0, 0, 0); */

    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-radius: 20px; */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

h4{
    position: relative;
    top: 20%;
}


/* -------------- */
/* ---- MAIN ---- */
/* -------------- */

main{
    height: 500px;
    padding: 50px 50px 50px 50px;
    

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

main p:nth-child(1){
    width: 60%;
}

.btn{
    padding: 10px 40px 10px 40px;
    width: fit-content;

    border-radius: 20px;
    border: 2px solid #8C4848;
    background: none;

    color: #8C4848;

    /* transform: scale(1); */
    transition: all 0.2s ease-in-out;
}

.btn:hover{
    border: 2px solid #8C4848;
    background: #8C4848;

    color: white;

    /* transform: scale(1.1); */
}

/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */

@media screen and (max-width: 1000px) {
    .title-container{
        height: 70vh;
    }

    .title-container img{
        height: 100%;
        width: auto;
    }

    .title-container div{
        height: fit-content;
        left: 0;
        padding: 5%;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1, h4{
        border-radius: 100px;
        text-align: center;
    }

    h1{
        margin-bottom: 90px;
    }

    main{
        height: fit-content;
        padding: 150px 0 150px 0;
    }

    main p:nth-child(1) {
        width: 80%;
    }

    main p{
        width: 80%;
        margin-bottom: 50px;
    }

    main p:not(:nth-child(1)){
        text-align: center;
    }

    .btn{
        border: 4px solid #8C4848;
    }
}