* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Noto Sans', sans-serif;
  }
  
  .background {
    position: absolute;
    width: 1920px;
    height: 1080px;
    background: linear-gradient(
      to right top, 
      rgba(79, 165, 52, 1) 10%,
      rgba(79, 165, 52, 1) 20%,
      rgba(79, 165, 52, 0) 80% 
    );
    overflow: hidden;
  }

  .top-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    background: linear-gradient(
      to right top, 
        rgba(79, 165, 52, 1) 0%,
        rgba(79, 165, 52, 1) 30%,
        rgba(79, 165, 52, 0) 80% 
      );
    z-index: 2;
  }

  .image-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    z-index: -1;
  }

  .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .culture-logo {
    position: absolute;
    width: 498px;
    height: 240px;
    object-fit: cover;
    top: 765px;
    left: 1645px;
    z-index: 4;
    background: url(../assets/logo.png);
  }

  .text-section {
    position: absolute;
    top: 232px;
    left: 65px;
    width: 1490px;
    height: 697px;
    background: linear-gradient(to right, 
    rgba(52, 114, 34, 1) 0%,
    rgba(52, 114, 34, 1) 25%,
    rgba(52, 114, 34, 0) 100% 
  );
    padding: 20px;
    border-radius: 30px;
    z-index: 3;
  }

  .text-section .title {
    display: -webkit-box;
    font-family: 'Nunito', sans-serif;
    font-size: 113px;
    color: #FFFFFF;
    text-align: left;
    padding: 0px 400px 0px 40px;
    text-shadow: 1px 0px 10px black;
    line-height: 1.1;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .text-section .line {
    position: absolute;
    width: 860px;
    height: 3px;
    left: -65px;
    margin-top: 10px;
    background-color: #FFF;
  }

  .text-section .description {
    font-size: 40px;
    color: #FFFFFF;
    margin-top: 25px;
    text-align: left;
    padding: 0px 546px 0px 40px;
    text-shadow: 3px 0px black;
  }

  .logo{
    position: absolute;
    width: 498px;
    height: 175px;
    left: 65px;
    top: 30px;
    object-fit: cover;
    z-index: 2;
    background: url(../assets/cultura.png);
  }

  .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1920px;
    height: 32px;
    display: flex;
    z-index: 3;
  }
  
  .footer-part {
    flex: 1;
    height: 100%;
  }
  
  .footer-part.orange {
    background-color: #ED6F15;
  }
  
  .footer-part.white {
    background-color: #FFFFFF;
  }
  
  .footer-part.red {
    background-color: #DE241B;
  }