html, body {
  overflow-x: hidden;
  background-color: black;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Titillium Web', sans-serif;
}

.navbar {
  background: rgb(135, 255, 255);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  color: #b01313;
}

#navbar__logo {
  background-color: #9312c6;
  opacity: 0.8;
  background-image: linear-gradient(to top, #87FFFF 0%, #000 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 3.4rem;
  font-family: 'Titillium Web', sans-serif;
  position: relative;
}

#navbar__logo img {
  width: 65px; 
  height: auto;
  margin-left: 10px;
}

.fa-gem {
  margin-right: 0.5rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.navbar__links {
  color: rgb(255, 0, 215);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.5rem 1rem;
  height: auto;
}

.navbar__links:hover {
  color: #FF00D7;
  background: rgb(3, 107, 126);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 85%;
  margin-bottom: 80px;
  gap: 20px;
}

.about-image {
  width: 100%;
  height: auto;
  max-width: 385px;
  margin-left: 20px;
  margin-right: 20px;
}

.about-text {
  text-align: left;
  padding: 20px;
  color: white;
  max-width: 500px;
}

.about-text h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: white;
}

.about-text a {
  text-decoration: none;
  color: rgb(122, 0, 112);
  border-radius: 5px;
  transition: rgb(255, 0, 215);
}

.about-text a:hover {
  color: rgb(80, 0, 68);
}


@media screen and (max-width: 1024px) {
  .about-container {
    flex-direction: row;
    gap: 10px;
  }

  .about-text, .about-image {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .navbar__container {
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0.1;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
  }

  .navbar__menu.active {
    background: rgba(0, 7, 7, 0.90);
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: rgb(3, 107, 126);
  }

  .navbar__item {
    width: 100%;
    color: #26183d;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .about-text, .about-image {
    width: 100%;
    text-align: center;
  }

  .about-image {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .about-container {
    width: 100%;
    gap: 15px;
  }

  .about-text {
    font-size: 0.9rem;
  }

  .about-image {
    max-width: 300px;
  }
}

