@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Outfit:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #00060EFF; */
}

nav {
  position: fixed;
  top: 2vh;
  width: 96%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  z-index: 99;
}
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav ul .logo {
  font-size: 20px;
  font-weight: 600;
}
nav ul .logo span {
  font-weight: 600;
}
nav ul .logo span:first-child {
  color: #023371;
}
nav ul .logo span:last-child {
  color: #4e027f;
}
nav li {
  height: 50px;
  cursor: pointer;
}
nav li:first-child {
  margin-right: auto;
}
nav a,
nav p {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: black;
}
nav a:hover,
nav p:hover {
  background-color: #f0f0f0;
}
nav .sidebar {
  position: fixed;
  top: 0;
  right: -100vh;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: 0.5s ease;
}
nav .sidebar li {
  width: 100%;
}
nav .sidebar a {
  width: 100%;
}
nav .active-sidebar {
  right: 0;
  transition: 0.5s ease;
}
nav .menu-button {
  display: none;
}
@media (max-width: 800px) {
  nav .hideOnMobile {
    display: none;
  }
  nav .menu-button {
    display: block;
  }
  nav .menubar li:not(:first-child, :last-child) {
    display: none;
  }
}
@media (max-width: 400px) {
  nav .sidebar {
    width: 100%;
  }
}

.about {
  width: 100%;
  padding: 5rem 2rem;
}
.about .image-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}
.about .image-container .about-img {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
.about .about-container {
  width: 100%;
  margin-bottom: 2rem;
}
.about .about-container h1 {
  margin-bottom: 2rem;
}
.about .about-container p:not(:last-child) {
  margin-bottom: 2rem;
}

.footer {
  padding: 2rem;
  width: 100%;
  background-color: #6d2ef2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer .logo {
  width: 10rem;
}
.footer .social-media-btns a {
  text-decoration: none;
}
.footer .social-media-btns a img {
  width: 10px;
  height: 10px;
}
.footer p {
  color: #fff;
  text-align: center;
}

@media (max-width: 600px) {
  .about .image-container {
    height: 10rem;
  }
  .about .about-container {
    width: 100%;
  }
  .about .about-container h1 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #6d2ef2;
  }
  .about .about-container p {
    font-size: 0.8rem;
  }
  .footer {
    gap: 1rem;
  }
  .footer .logo {
    width: 8.5rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .footer p {
    font-size: 0.8rem;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  /* Styles for small tablets */
  .about .image-container {
    height: 11rem;
  }
  .about .about-container {
    width: 100%;
  }
  .about .about-container h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #6d2ef2;
  }
  .about .about-container p {
    font-size: 1rem;
  }
  .footer {
    gap: 1.5rem;
  }
  .footer .logo {
    width: 9rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.3rem;
    height: 1.3rem;
  }
  .footer p {
    font-size: 0.9rem;
  }
}
/* For medium-sized tablets (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
  /* Styles for medium-sized tablets */
  .about .image-container {
    height: 12rem;
  }
  .about .about-container {
    width: 100%;
    padding: 0 1rem;
  }
  .about .about-container h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #6d2ef2;
  }
  .about .about-container p {
    font-size: 1.1rem;
  }
  .footer {
    gap: 2rem;
  }
  .footer .logo {
    width: 9.5rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .footer p {
    font-size: 1rem;
  }
}
/* For laptops and small desktop computers (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1237px) {
  .about .image-container {
    height: 14rem;
  }
  .about .about-container {
    width: 100%;
    padding: 0 3rem;
  }
  .about .about-container h1 {
    font-size: 2.1rem;
    font-weight: 600;
    color: #6d2ef2;
  }
  .about .about-container p {
    font-size: 1.2rem;
  }
  .footer {
    gap: 2.2rem;
  }
  .footer .logo {
    width: 10.5rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.7rem;
    height: 1.7rem;
  }
  .footer p {
    font-size: 1.1rem;
  }
}
/* For desktop computers (1200px and above) */
@media (min-width: 1238px) and (max-width: 1399px) {
  .about .image-container {
    height: 16rem;
  }
  .about .about-container {
    width: 100%;
    padding: 0 4rem;
  }
  .about .about-container h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #6d2ef2;
  }
  .about .about-container p {
    font-size: 1.3rem;
  }
  .footer {
    gap: 2.5rem;
  }
  .footer .logo {
    width: 11rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.7rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.9rem;
    height: 1.9rem;
  }
  .footer p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1400px) {
  .about .image-container {
    height: 18rem;
  }
  .about .about-container {
    width: 100%;
    padding: 0 5rem;
  }
  .about .about-container h1 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #6d2ef2;
  }
  .about .about-container p {
    font-size: 1.4rem;
  }
  .footer {
    gap: 2.6rem;
  }
  .footer .logo {
    width: 12rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.7rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.9rem;
    height: 1.9rem;
  }
  .footer p {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=about.css.map */