* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(hsla(330, 95%, 42%, 0.725), hsla(225, 82%, 49%, 0.686));
}
header{
    height: 100px;
    padding: 0 20px;
    color: rgb(0, 0, 0);
    background-color: hsla(330, 74%, 51%, 0.027);
    display: flex;
    align-items: center;
    gap: 75px;
}
footer{
    height: 100px;
    padding: 0 20px;
    color: rgb(0, 0, 0);
    background-color: hsla(225, 93%, 47%, 0.055);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
main{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background-logo {
    position: absolute;
    width: 60%;
    max-height: 100%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.text{
    position: absolute;
    color: aliceblue;
    font-size: 4.5rem;
    width: 240px;
    transform: translateX(-100%);
    text-align: end;
    filter: drop-shadow(0 0 20px black);
}
header{
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 75px;
    gap: 24px;
}
header span{
    font-weight: 600px;
    display: flex;
}
.jesus{
    height: 85vh;
    filter: drop-shadow(0 0 20px black);
}
footer {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 75px;
    padding-left: 75px;
    color: #FFFFFF;
    font-weight: 100;
}

footer div {
    width: 64px;
}
@media (max-width: 768px) {
    header {
        padding-left: 25px;
    }

    .content-text {
        transform: translateX(0%);
        top: 80px;
        font-size: 1rem;
        width: 100px;
        text-align: center;
    }

    .content-image {
        height: 70vh;
    }

    footer {
        padding: 0px 25px;
    }
    .text {
        position: absolute;
        color: aliceblue;
        font-size: 2.5rem;
        width: 240px;
        transform: translateX(-100%);
        filter: drop-shadow(0 0 20px black);
    }
}
