  .main-projects{
    margin-bottom: 20px;
  }
  .section-container {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      align-items: center;
      justify-content: center;
  }

  .container {
      width: 60vw;
      margin-top: 20px;
      margin-left: 20px;
      border: 1px solid black;
      border-radius: 20px;
      background-color: rgb(217, 236, 252);
      -webkit-box-shadow: 13px 11px 20px 10px #828282; 
box-shadow: 13px 11px 20px 10px #828282;
  }

  .reveal {
      position: relative;
      opacity: 0;
  }

  .reveal:first-child {
      opacity: 1;
  }

  .reveal.active {
      opacity: 1;
  }

  .active.fade-left {
      animation: fade-left 1.5s ease-in-out;
  }

  .title-project {
      text-align: center;
  }

  .project-details {
      display: flex;
      flex-direction: column;
      padding: 10px;
  }

  .logo-project-container {
      display: flex;
      gap: 10px;
      padding: 10px;
      flex-wrap: wrap;
      align-items: center;
  }

  .logo-project {
     width: 50px;
  }

  .description {
      padding: 10px;
  }

  .picture-container {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .picture {
      width: 500px;
  }

  .link-container {
      display: flex;
      width: 50%;
      justify-content: space-around;
      padding: 10px 0;
  }


  @keyframes fade-left {
      0% {
          transform: translateX(-1000px);
          opacity: 0;
      }

      100% {
          transform: translateX(0);
          opacity: 1;
      }
  }

  @media screen and (max-width: 768px) {
    .section-container {
        width: 100vw;
    }

    .container {
        width: 90vw;
    }

    .logo-project {
        width: 40px;
     }
    .picture {
        width: 250px;
    }
  }