body {
    background-color: #207E7A;
    font-family: "Fuzzy Bubbles";
}

.main-container {
    display: flex;
    justify-content: flex-end;
    max-width: 2000px; /* Prevents excessive stretching */
    margin: 0 auto;
    width: 90%;
}

header {
    position: fixed;
    top: 0;
    height: 75px;
    padding: 0;
    display: flex;
    justify-content: right;
    align-items: center;
    background-color: transparent;
    width: 100vw;
    max-width: 2000px;
    margin-top: 20px;
    padding-right: 15px;
}


nav {
    max-width: 2000px;
    display: flex;
    justify-content: center;
    align-items: center;
    unicode-bidi: isolate;
    margin: 50px;
}

nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 40vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 50px;
}

nav > ul > li {
    width: 220px;
    height: 50px;
    text-align: center;
  }

nav > ul > li > a {
    display: flex;
    text-decoration: none;
    background-color: #175B58;
    width: 220px;
    height: 50px;
    align-items: center; 
    justify-content: center; 
    color: #FCDEAF;
    font-size: 25px;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

nav > ul > li > a:hover {
    background: #073A5D;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.1)
}


.project-items {
    width: 80%;
    padding-top: 100px;
}

.side-panel {
    width: 15%;
    font-family: "Outfit";
    margin: 0 5%;
    color: #FADFB5;
    font-size: clamp(10px, 1.5vw, 25px);
    position: fixed;
    top: 140px;
    left: 10px;
}

.side-panel > h4 > a {
    text-decoration: none;
    color: #FADFB5;
    width: 100%;
}

.side-panel > h4 { 
  background-color: #175B58;
  border-radius: 80px;
  margin-top: 5%;
  padding-top: 2%;
  padding-bottom: 2%;
}

.side-panel > h4:hover {
  background: #073A5D;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.1)
}


.collapsible {
    background-color: #175B58;
    color: #F2BDBD;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 25px;
    font-family: "Fuzzy Bubbles";
    font-weight: bold;
    border-top: 15px dashed #207E7A;
    margin-top: 50px;
    margin-right: 50px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: #FADFB5;
    color: #207E7A;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #175B58;
    min-height: 500px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  }

  .content-header {
    background-color: #073A5D;
    color:#FADFB5;
    font-size: 25px;
    font-weight: bold;
    padding-top: 10px;
    border-bottom: 10px double #175B58;
    display: block;
  }

  .header-skill, .header-tools, .header-link {
    display: block;
    justify-content: flex-start;
    padding: 10px;
  }

  h4 {
    font-family: "Outfit";
    padding-left: 15px;
    padding-bottom: 5px;
    text-align: start;
    margin: 0;
   }

  #project-link {
    text-decoration: none;
    color:#F2BDBD
  }

  #project-small {
    font-family: "Fuzzy Bubbles";
    color: #F2BDBD;
    size: 80%;
    text-align: left;
    margin-left: 30px;
  }
  .content-body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }

  .content-description {
    width: 50%;
    display: inline-block;
    text-align: left;
    padding: 25px;
    padding-right: 50px;
    font-weight: bold;
    
  }
  .content-description > p > a {
    text-decoration: none;
    color: #F2BDBD
  }

  .content-description > h2 {
    color: #F2BDBD;
    font-size: 30px;
    font-family: "Outfit";
  }
  .content-description > p, ul > li {
    color: #FADFB5;
    font-size: 20px;
  }

  .content-gallery {
    display: grid;
    width: 50%;
    height: 100%;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    margin: 30px auto;
  }
  .project-image-card {
    display: inline-block;
    align-items: center;
  }

  .project-image-card > small {
    margin: 20px;
    display: block;
    text-align: center;
    font-weight: bold;
    color: #F2BDBD;
    font-family: "Outfit";
    font-size: 20px;
  }
  .project-image-card > img {
    width: 95%;
    height: auto;
    border: 8px dashed #F2BDBD;
  }

  .creative-img > img {
    width: 95%;
    height: auto;
    border: 8px dashed #F2BDBD;
  }

  .other-img > img {
    width: 95%;
    height: auto;
    border: 8px dashed #F2BDBD;
  }

  @media (max-width: 480px) {
    html {
      width: 100vw;
      overflow-x: hidden
    }

    body {
        width: 100vw;
        overflow-x: hidden
    }
    
    .main-container {
      display: block;
      justify-content: flex-end;
      max-width: 480px; /* Prevents excessive stretching */
      margin: 0 auto;
      width: 100%;
    }
  
    header {
      position: fixed;
      top: 0;
      height: 75px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #207E7A;
      width: 100vw;
      max-width: 100%;
      margin-top: 20px;
      margin: 0;
      z-index: 100;
  }
  
    nav {
      width: 70vw;
      display: flex;
      justify-content: center;
      align-items: right;
      unicode-bidi: isolate;
      margin: 0;
  }

    nav > ul {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 80vw;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 30px;
    }

    nav > ul > li {
        width: 80vw;
        height: 50px;
        text-align: center;
      }

    nav > ul > li > a {
        display: flex;
        text-decoration: none;
        background-color: #175B58;
        width: 100%;
        height: 40px;
        align-items: center; 
        justify-content: center; 
        color: #FCDEAF;
        font-size: 18px;
        font-weight: bold;
        border-radius: 40px;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    }

    nav > ul > li > a:hover {
        background: #073A5D;
        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
        transform: scale(1.1)
    }

    .side-panel {
      width: 100vw;
      font-family: "Outfit";
      margin: 0;
      color: #FADFB5;
      font-size: 20px;
      position: fixed;
      background-color: #207E7A;
      top: 70px;
      text-align: center;
      left: 0;
      height: 30%;
      padding: 0;
    }

    .side-panel > h1 {
      width: 100%;
    } 
    .side-panel > h4 > a {
      text-decoration: none;
      color: #FADFB5;
      width: auto;
  }
  
    .side-panel > h4 { 
      background-color: #175B58;
      border-radius: 80px;
      margin-top: 5%;
      width: 50%;
      margin: 3% auto;
      text-align: center;
    }
  
    .side-panel > h4:hover {
      background: #073A5D;
      box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
      transform: scale(1.1)
    }

    h1 {
      width: 100vw;
    }

    .project-items {
      width: 90%;
      padding-top: 80%;
      margin: auto 10px;
    }

    .content-header {
      font-size: 20px;
    }

    h4 {
      font-family: "Outfit";
      padding-left: 0;
      padding-bottom: 5px;
      text-align: start;
      margin: 0;
     }

     .content-body {
      display: block;
    }
    
    .content-description {
      width: 100%;
      padding: 0;
      padding-right: 0;
    }

    .content-gallery {
      display: grid;
      width: 100%;
      height: 100%;
      grid-template-columns: repeat(1, 1fr);
      align-items: center;
      margin: 30px auto;
    }

    .project-image-card > img {
      width: 95%;
      height: 200px;
      border: 8px dashed #F2BDBD;
    }
  
    .creative-img > img {
      width: 95%;
      height: 280px;
      border: 8px dashed #F2BDBD;
    }
  
    .other-img > img {
      width: 95%;
      height: 200px;
      border: 8px dashed #F2BDBD;
    }

  }