* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 100%;
  }
  
  body {
    font-family: Quicksand,sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    background-color: #e9e9ea54;
    position: relative;
  }
  header h1 {
    font-size: 40px;
  }
 .hero, .features, .register {
    display: flex;
    padding: 1rem;
  }

  .content-holder {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .column-flex {
    flex-direction: column;
    align-items: end;
    text-align: end;
  }
  .column-flex-2 {
    flex-direction: column;
    align-items: start;
    text-align: left;
  }
  .column-flex .column , .column-flex-2 .column {
    width: 70%;
    margin-bottom: 30px;
  }
  .container {
    width: 80%;
    margin: auto;
    margin-top: 5%;
  }

  .bottom-image {
    position: absolute; 
    bottom: 0;
    width: 50%;
    height: 200px; 
    background-size: cover;  
    background-repeat: no-repeat;
  }
  .right-image img {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .left-image img {
    position: absolute;
    bottom: -95px;
    left: -22px;
    height: 222px;
  }
  .left-image {
    left: 0;
    background-image: url('./assets/winera\ logo_2022_RED_go_winescape\ 1.png');  
    background-position: left bottom;
    background-size: 260px;
    background-position-y: 10px;
    background-position-x: 2px;
  }
  
  .right-image {
    right: 0;
    background-image: url('./assets/image\ 42.png'); 
    background-position: right bottom;
    background-size: contain;

  }
 
.content-holder img {
  mix-blend-mode: color-burn;
}

  header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);  
    z-index: 1000;  
    padding: 1em;
    text-align: center;
  }
 
  
  .features {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
  }
  .features .list-container {
    width: 50%;
    display: flex;
    align-items: baseline;
    justify-content: end;
    padding-right: 20px;
  }

  .features .list-container-right {
    justify-content: start;
    padding-left: 20px;
  }
  .features .image-container {
    width: 50%;
  }
  .features article {
    width: 100%;
  }
  
  .features ul li {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
  }

  .features ul li i {
    border: 1px solid;
    border-radius: 999px;
    padding: 2px;
    font-size: 12px;
  }
  .features img {
    max-width: 100%;
    height: auto;
  }
  
  .register {
    background: #f1f1f1;
    padding: 2rem;
  }
  
  button {
    display: inline-flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--merlot, #C32429);
    color: white;
    border: none;
    cursor: pointer;
    width: 100px;
    height: 50px;
  }
  footer {
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    position: relative;
    z-index: 10;
  }
  footer .footer-button-holder {
    position: relative;
  }
  footer .footer-button-holder img {
    position: absolute;
    right: -15px;
    bottom: -15px;
  }

  footer button {
    font-size: 15px;
  }
 
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .container {
      width: 90%;
    }
    .column-flex .column , .column-flex-2 .column {
      width: 100%;
      margin-bottom: 30px;
    }
  }
  @media (max-width: 976px) {
    .hero {
      flex-direction: column;
    }
    .content-holder {
      width: 90%;
      text-align: center;
    }
    .left-image {
      display: none;
    }
    header h1 {
      font-size: 33px;
    }
  }