*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
  a{
    text-decoration: none;
    color: inherit;
  }
}

body {
  background-image: url('../source/candy\ 01-export.png');
  background-color: #fff7f7;
  color: #ee4493;
  padding: 2rem 4rem 0;
}

header{
  padding: 2rem 0rem;
  h1{
    padding-bottom: 2rem;
    font-size: 5rem;
    text-align: center;
    color: #5bcefa;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgb(148, 153, 184);
    a:hover{
      color: #ee4493;
      text-shadow: 2px 2px 4px #a83269;
      font-size: 5.5rem;
    }
  }
  nav{
    font-size: 2rem;
    ul{
      list-style: none;
      display: flex;
      gap: 2rem;
      justify-content: space-evenly;
      flex-wrap: wrap;
      li{
        a{
          color: #ffffff;
          padding: 0.5rem 1.5rem;
          border-radius: 1rem;
          background-color: #5bcefa;
          font-weight: bold;
        }
        a:hover{
          background-color: #ee4493;
          color: #ffffff;
        }
      }
    }
  }
}
main{
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  gap: 2rem;

  h2, h3{
    text-transform: uppercase;
  }

  

  .centro{
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    h2{
    font-size: 3rem;
    font-weight: 800;
    }
    p{
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .CConteudo{
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: #ffffff;
      border-radius: 1rem;
      border: 0.5rem solid #5bcefa;
      padding: 3rem 2rem;
    }
  }

  .esquerda{
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
    h2{
      font-size: 2rem;
    }
    h3{
      font-size: 1.5rem;
    }
    p{
      text-align: justify;
      font-size: 1.2rem;
    }
    .EConteudo{
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: #ffffff;
      border-radius: 1rem;
      border: 0.5rem solid #5bcefa;
      padding: 1.5rem;
    }
  }

  .direita{   
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
    
    h2{
      font-size: 2rem;

    }
    h3{
      font-size: 1.5rem;
    }
    p{
      font-size: 1.2rem;
    }
    .DConteudo{
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: #ffffff;
      border-radius: 1rem;
      border: 0.5rem solid #5bcefa;
      padding: 1.5rem;
      
      .updates{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        section{
          text-align: justify;
          display: flex;
          flex-direction: column;
          padding-right: 5%;
          gap: 1rem;
          max-height: 15rem;
          overflow-y: scroll;
        }

      }
    }
  }

}

footer{
  text-align: center;
  font-size: 1.5rem;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 0.5rem solid #5bcefa;
  padding: 1.5rem;
}