/*reset*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(#e4622af8, #770d0e 50%, #770d0e 60%,#000000);
}
.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;
    filter: drop-shadow(0px 10px 5px);
}
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;
}
.texto{
    position: absolute;
    color: #FFF;
    font-size: 2.25rem;
    width: 212px;
    transform: translate(-100%);
    text-align: start;
    margin-right: 24px;
}
.imagem-coca{
    height: 80vh;
    filter: drop-shadow(0px 0px 100px darkred);
}
footer{
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-right: 75px;
  }
  @media (max-width:768px){a
    header nav{ 
        margin-left:25px; 
      }
    main{ 
        align-items:flex-end; 
      }
    .content-text{ 
        transform: translateX(0); 
        top:80px; 
        font-size:1rem; 
        width:100px; 
        text-align:center; 
        margin:0; 
      }
    .content-image{ 
        height:70vh; 
      }
    footer{ 
        height:60px; 
        margin-right:25px; 
      }
  }