* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  ul {
    list-style: none;
  }
  
  a:hover {
    color: #37265F;
    opacity: 1;
  }
  
  /* Top nav */
  
  .header {
    height: 120px;
    padding: 42px;
    padding-left: 15%;
    padding-right: 15%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav ul {
    list-style: none;
    width: 140px;

    display: flex;
    justify-content: space-between;
}
  
  nav li {
    font-size: 14px;
  }
  
  .name {
    font-size: 18px;
    color: #37265F;
  }
  
  .surname {
    opacity: 0.5;
  }
  
  /* Header */
  
  .main_image {
    width: 100%;
    display: block;
    margin: auto;
    padding-bottom: 56px;
    padding-top: 28px;
  }
  
  /* Project */

  .project_body {
    padding: 24px 28%;
  }
  

  .title_wrapper {
    padding: 50px 30% 0;
  }
  
  .main_title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #080808;
    text-transform: uppercase;
    padding-bottom: 20px;
    padding-top: 30px;
  }
  
  .main_title_description {
    font-size: 20px;
    line-height: 2;
    font-weight: 300;
    color: #080808;
    padding-bottom: 70px;
  }
  
  .highlight_box {
    background-color: #372AFD;
    border-radius: 8px;
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 22px;
    padding-bottom: 8px;
    margin-bottom: 48px;
  }
    .intro_text {
        color: #fafafa;
        font-size: 24px;
        line-height: 1.8;
        font-weight: 400;
        padding-bottom: 24px;
    }

  .feature_box {
    background-color: #f2f2f2;
    border-radius: 8px;
    margin: 24px 18%;
    padding: 24px 40px;
  }

    .feature_box_body{
      padding: 0px 72px;
    }
  
  .external_link a {
    color: #fafafa;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }
  
  .external_link a:hover {
    text-decoration: underline;
  }
  
  .about_project_wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: space-around;
    padding-top: 40px;
  }
  
  .section_title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 24px;
  }

  .subsection_wrap {
    padding-left: 16px;
    padding-top: 24px;

    }
        .subsection_wrap_boxed {
            background-color: #f2f2f2;
            border: #e0e0e0;
            border-radius: 12px;
            margin: 16px 0px;
            padding: 32px 32px 16px;
        }

  .subsection_title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
  }
  
  .title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #080808;
    text-transform: uppercase;
    padding: 24px 0px;
  }
  
  .content_text {
    font-size: 18px;
    line-height: 2;
    font-weight: 300;
    color: #080808;
    padding-bottom: 20px;
  }

    ul.content_text li {
    line-height: 1.6;
    }

    strong {
      font-weight: 500; 
    }

  .bulletpoints {
    list-style-type: disc;
    color: #bdbdbd;
    margin-left: 20px;
  }
  
  .black {
    font-weight: 500;
  }
  
  .img_prototype {
    width: 90%;
    display: block;
    margin: auto;
    padding-bottom: 150px;
  }


  .divider {
    border: none;
    height: 1px;
    background-color: #f2f2f2;
    margin: 48px 0px;
  }


  .white_divider {
    border: none;
    height: 1px;
    background-color: #fafafa;
    margin: 48px 0px;
  }


  
  


  /* IMAGES GALLERY */


  .images_gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    margin-top: 16px;
    }

    .image-container {
    flex: 1;
    max-width: calc(33.33% - 40px);
    margin-bottom: 40px;
    }

    .image-container:last-child {
        margin-right: 0; /* To remove the extra space after the last image */
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px; /* Optional: Add border-radius for image containers */
    }
  
  /* When the screen width is at least 1200px, distribute images horizontally */
  @media screen and (min-width: 1200px) {
    .image-container {
      display: flex;
      justify-content: space-between;
    }
  }




  .wip_box {
    background-color: #f2f2f2;
    border: #e0e0e0;
    border-radius: 12px;
    margin: 24px 20%;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 16px;
    padding-bottom: 24px;
  }
  
  /* Header tablet */
  
  @media only screen and (max-width: 992px) {

    .project_body{
      padding: 24px 16px;
    }

    .main_title_wrapper {
      padding: 50px 10% 0;
    }
    .about_project_wrapper {
      flex-direction: column;
    }
    .mini_title_wrapper {
      padding-top: 30px;
    }
    .project_content_wrapper_green,
    .project_content_wrapper_grey {
      padding: 70px 10%;
    }
    .img_prototype {
      padding-bottom: 150px;
    }
  }
  
  /* Header mobile */
  
  @media only screen and (max-width: 576px) {
    .main_image {
      width: 100%;
    }
  }