*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(#000000,#f4292d 50%,#f55356 60%,#f2b1b1 );
}

.background-image {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top:0; left:0; right: 0; bottom: 0;
    margin: auto;
    opacity: 0.5;
    z-index: -1;
}

header{
    height: 100px;
}
header nav{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgb(234, 234, 234);
    margin-left: 75px;
    font-family: pointer;
}

main{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-text{
    position: absolute;
    color: #f3c7c7;
    font-size: 2.25rem;
    width: 212px;
    transform: translateX(-100%);
    text-align: end;
    margin-right: 150px;
}
.content-image{
    height: 80vh;
    filter: drop-shadow(50px -40px 20px rgba(0, 0, 0, 0.4));
}

footer{
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: 75px;
}

@media (max-width:768px){
    header nav{
        margin-left:25px;
    }
    main{
        align-items: flex-end;
    }
    .content-text{
        transform: translateX(0);
        top: 80px;
        font-size: 1rem;
        width: 500px;
        text-align: center;
        margin: 0;
    }
    .content-image{
        height: 70vh;
    }
    footer{
        height: 50px;
        margin-right: 25px;
    }
}