body {
  margin: 0px;
  background-color: #eeeeee !important;
  font-family: "Roboto Condensed", sans-serif !important;
}

.half-page-bg {
  height: 50%;
  background-color: rgb(255, 255, 255);
}

.logo {
  margin-right: 16px;
  border-radius: 4px;
}

.heroSection {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 59px;
}

.headerLogo {
  width: 200px;
  transition: 0.1s;
  box-shadow: gray 4px 4px 30px;
}

.headerLogo:hover {
  transform: translateX(-12px);
}

.headerContent {
  display: flex;
  align-items: center;
}

.heroSection_text-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.heroSection_text-section h1,
.projectsContainer span {
  background: #1bb3ff;
  background: linear-gradient(to right, #1bb3ff 0%, #136bcf 69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heroSection_text-section p {
  font-size: large;
}

.header-gif {
  width: 300px;
}

.seeProductsButton {
  width: 200px !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  font-weight: 500 !important;
  box-shadow: gray 6px 6px 30px;
}

.seeProductsButton:hover {
  background-color: rgb(240, 240, 240) !important;
  color: black !important;
}

/* BLockquote */
.blockquoteContainer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.blockquote {
  padding: 12px;
  background-color: #e3f2fd;
  border-left: 5px solid #007BFF;
  color: #0b3d91;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 16px 0px;
}

.blockquote p {
  font-size: 24px;
  font-style: italic;
}

.blockquote label {
  font-size: 100px;
  color: #007BFF;
}

/*About*/

.aboutImage {
  max-width: 100%;
  height: auto;
}

.textSection h2,
.projectsContainer h2 {
  text-shadow: 1px 1px 50px !important;
}

.textSection p {
  font-size: 18px;
  text-align: justify;
}

.projectsContainer h1 {
  font-weight: bold !important;
}

.projectsContainer h1 label {
  font-size: 52px;
  background: #ff9b18;
  background: linear-gradient(to right, #6af558 0%, #2facff 88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.techstackSection {
  margin: 12px;
  margin-top: 32px;
  text-align: center;
}

.techstackSection h1 {
  font-weight: bold !important;
}

.techstackSection h1 label {
  font-size: 52px;
  background: #ff9b18;
  background: linear-gradient(to right, #ff9b18 0%, #ff2a2a 88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  border-radius: 6px;
  background: rgb(255, 255, 255);
}

.logos-slide {
  animation: 15s slide infinite linear;
  display: inline-block;
}

.logos-slide img {
  height: 80px;
  margin: 0 40px;
}

/* footer */

.footer {
  margin-top: 125px;
  color: white;
  background-color: #136bcfc7;
}

.link {
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Table */

.toolsContainer {
  margin-top: 64px;
  text-align: center;
}

.headlineContainer {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.techImages {
  width: 20px;
}

.card-header {
  background-color: #136bcfc7 !important;
  color: white !important;
}

.techTextSection h2 {
  font-size: 52px;
  background: #ff9b18;
  background: linear-gradient(to right, #ff9b18 0%, #ff2a2a 88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.techTextSection li {
  font-size: 18px;
}

.toolsImg {
  width: 500px;
}

.fMRedirectButton {
  font-weight: 500 !important;
  box-shadow: gray 3px 3px 30px;
}

.fMRedirectButton:hover {
  background-color: rgb(152, 215, 252) !important;
  color: rgb(65, 65, 65) !important;
}

/* FM section */
.fm-section {
  background-color: white;
  margin-top: 100px;
  padding: 12px;
  margin-left: auto;
  margin-right: auto;
}

.tech-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #ecedee;
  border-radius: 6px;
  padding: 12px;
}

.tech-icons img {
  height: 40px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.gallery img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  border: 2px dashed black;
}

/*Contact section*/
.contactSection {
  background-color: rgba(255, 255, 255, 0.603);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  
}

.contactSection h2 {
  text-align: center;
  margin-bottom: 20px;
}

#contactForm {
  max-width: 600px;
  margin: 0 auto;
}

form button {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 10px;
}

#statusMessage {
  font-weight: bold;
  font-size: 24px;
  color: rgb(112, 187, 0);
}

.socialsContainer {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  gap: 12px;
}

.attributionsContainer {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}






@media screen and (max-width: 1199px) {
  .techTextSection {
    margin-top: 64px !important;
  }
}

@media screen and (max-width: 991px) {
  .headerLogo {
    width: 100px;
  }

  .header-gif {
    display: none;
  }

  .aboutSection {
    margin-top: 32px;
  }

  .fM-headerPic {
    max-width: 200px !important;
  }
}

@media screen and (max-width: 767px) {
  .cards {
    width: 500px !important;
  }

  .fM-headerPic {
    display: none;
  }
}

@media screen and (max-width: 516px) {
  .blockquote p {
    font-size: 18px;
    font-style: italic;
  }
}

@media screen and (max-width: 500px) {
  .logo {
    display: none;
  }
}

@media screen and (max-width: 420px) {
  .blockquote p label {
    font-size: 64px !important;
  }
}


@media screen and (max-width: 400px) {
  .aboutSection {
    margin-top: 0px;
    align-items: center;
  }

  .aboutSection p {
    font-size: 16px;
  }

  .headlineContainer {
    gap: 12px;
  }
}

@media screen and (max-width: 394px) {
  .blockquote p label {
    font-size: 32px !important;
  }

  .blockquoteContainer {
    padding: 0px;
  }
}
