* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Noto Sans', sans-serif;
  }
  
  .background {
    position: absolute;
    width: 1080px;
    height: 1920px;
    background-color: rgba(79, 165, 52, 0.2);
    overflow: hidden;
  }
  
  .top-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 1100px;
    background: linear-gradient(
        to bottom, 
        rgba(79, 165, 52, 1) 0%,
        rgba(79, 165, 52, 1) 80%,
        rgba(79, 165, 52, 0) 100% 
      );
    z-index: 2;
  }
  
  .image-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1080px;
    height: 1080px;
    overflow: hidden;
    z-index: -1;
  }
  
  .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .culture-logo {
    position: absolute;
    background: url(../assets/cultura.png);
    width: 498px;
    height: 175px;
    object-fit: cover;
    top: 25px;
    left: 310px;
    z-index: 4;
  }
  
  .text-section {
    position: absolute;
    top: 108px;
    left: 77.5px;
    width: 925px;
    height: 945px;
    background: linear-gradient(to bottom, rgba(52, 114, 34, 1), transparent);
    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: center;
    padding-top: 70px;
    text-shadow: 3px 5px black;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .text-section .line {
    position: absolute;
    width: 591px;
    height: 3px;
    background-color: #FFF;
    left: 165px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .text-section .description {
    font-size: 40px;
    color: #FFFFFF;
    margin-top: 40px;
    text-align: left;
    padding: 0px 7px 0px 44px;
    text-shadow: 3px 0px black;
  }

  .logo{
    position: absolute;
    background: url(../assets/logo.png);
    width: 275px;
    height: 263px;
    object-fit: cover;
    top: 1626px;
    left: 820px;
  }
  
  .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1080px;
    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;
  }
  