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

    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(#000000,#880406 50%,#790507 60%,#000000);

}  

.background-image{
    
    filter: drop-shadow(200px 200px 200px #0006);
    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: white;
    margin-left: 75px;
    font-family: sans-serif;
    cursor: pointer;

}

main{

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

.content-text{
    position: absolute;
    color: #fff;
    font-size: 2.25rem;
    width: 212px;
    transform: translateX(-100%);
    text-align: end;
    margin-right: 100px;
}

.content-image{

    height: 80vh;
    filter: drop-shadow(0px 200px 20px #0006);
}

footer{

    height: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-right: 75px;

}

@media (max-width:768px){

    header nav{
        margin-left: 25px;
    }

    main{
        align-items: flex-end;
    }

   .content-image{
    height: 70vh;
   } 

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