@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.code-dropper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  opacity: 0.05;
  background: url("../Assets/code_backdrop.png");
  z-index: -9999;
}

/* Header */
.header {
  margin: 0;
  background-color: #121212;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 999999;
}

.header .header-content {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header .header-content .name {
  margin: 20px;
  margin-left: 30px;
}

.header .header-content .name .fn {
  font-size: 1.8rem;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #1EE767;
}

.header .header-content .name .ln {
  font-size: 1.8rem;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #fff;
}



.header .header-content .contact-button {
  background-color: transparent;
  padding: 5px 30px 5px 30px;
  color: #1EE767;
  border: 2px #1EE767 solid;
  border-radius: 5px;
  transition: 0.3s;
  margin: 20px;
  height: 40px;
  font-size: 1.1rem;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-right: 30px;
  text-decoration: none;
}

.header .header-content .contact-button:hover {
  background-color: #1EE767;
  color: #fff;
  cursor: pointer;
}

.header-buffer {
  margin-bottom: 100px;
}

/* Project Header */
#project-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #project-text-wrapper .project-subtitle {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #acacac;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: -50px;
  }
  
#project-text-wrapper .project-title {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 3.8rem;
  }
  
#project-text-wrapper .project-description {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    width: 50%;
    text-align: center;
    font-size: 1rem;
    margin-top: -40px;
  }

  #project-text-wrapper .project-button-list {
    display: flex;
    gap: 1rem;
  }


  #project-text-wrapper .project-button-list .project-button {
    background-color: transparent;
    padding: 5px 30px 5px 30px;
    color: #1EE767;
    border: 2px #1EE767 solid;
    border-radius: 5px;
    transition: 0.3s;
    height: 40px;
    font-size: 1.1rem;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
  }

  #project-text-wrapper .project-button-list .project-button:hover {
    background-color: #1EE767;
    color: #fff;
    cursor: pointer;
  }

/* Side by Side components */
.side-by-side-wrapper {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
  }
  
  .side-by-side-section {
    width: 100%;
    min-height: 60vh;
    margin-bottom: 10%;
    max-width: 1224px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  
  
  @media screen and (max-width: 500px) {
    .side-by-side-section {
      min-height: 100vh;
    }
  }
  
  .side-by-side-section .image-container {
    width: 80%;
    height: 80%;
    display: block;
    margin: auto;
  }
  
  .side-by-side-section .image-container .image-section {
    width: 40%;
  }
  
  .side-by-side-section .image-container .image-section.right {
    float: right;
  }
  
  .side-by-side-section .image-container .image-section.left {
    float: left;
  }
  
  .side-by-side-section .image-container .image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    max-width: 800px;
  }
  
  .side-by-side-section .image-container .image-section img.bounce {
    animation: bounce 3s infinite;
  }
  
  .side-by-side-section .content-container {
    width: 55%;
  }
  
  .side-by-side-section .content-container.right {
    float: right;
  }
  
  .side-by-side-section .content-container.left {
    float: left;
  }
  
  @keyframes bounce {
  
    0%,
    100% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-20px);
    }
  }
  
  .side-by-side-section .content-container .content-title {
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 3rem;
    margin-bottom: -20px;
  }
  
  .side-by-side-section .content-container .content-subtitle {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #acacac;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: -30px;
  }
  
  .side-by-side-section .content-container .content-description {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  
  
  @media screen and (max-width: 768px) {
    .side-by-side-section {
      width: 100%;
      display: flex;
      margin-top: 30px;
      margin-bottom: 30px;
      align-items: center;
      justify-content: center;
    }
  
    .side-by-side-section .content-container {
      float: none;
      width: 100%;
      display: block;
      margin: auto;
    }
  
    .side-by-side-section .image-container .image-section {
      float: none;
      width: 100%;
      display: block;
      margin: auto;
    }
  
    .side-by-side-section .image-container .image-section img {
      width: 50%;
    }
  
    .side-by-side-section .content-container .content-title {
      text-align: center;
      font-size: 19px;
    }

    .side-by-side-section .content-container .content-subtitle {
        text-align: center;
        font-size: 1rem;
        margin-top: -15px;
      }
  }
  