@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Google Sans Flex;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: white;
}

body {
  background: black;
  color: white;
  overflow-x: hidden;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(139, 92, 246, 0.25),
      transparent 70%
    ),
    #000000;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

/* NAVBAR */
nav {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}

.logo-text {
  font-size: 20px;
  font-family: Raleway;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: white;
}

.slash {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.3);
}

.logo {
  width: 40px;
  margin: 5px 10px;
  pointer-events: none;
}

/* DESKTOP MENU */
.menu {
  display: flex;
  position: relative;
  right: 50px;
  gap: 25px;
}

.menu a {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
}

.menu a:hover {
  color: rgb(192, 165, 255);
  transition: 0.5s;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  z-index: 100;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  border-radius: 5px;
}

/*CENTER WEBSITE*/

.centercontainer {
  margin: 0 auto;
  display: block;
  width: 80%;
}

/* INDEX ABOUT (BRIEF ABOUT ON INDEX PAGE) */

.index-about {
  width: 100%;
  margin-top: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 10px;
}

.index-about:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.index-about h2 {
  margin: 10px 35px;
}

.in-title {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 10px;
  margin: 0 35px;
}

.in-title::after {
  content: "";
  width: 200px;
  height: 1px;
  background-color: rgba(192, 165, 255, 0.7);
  display: inline-block;
  margin-left: 7px;
}

.abouttext-link {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.abouttext-link p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 30px;
  width: 70%;
  text-align: left;
  margin: 0 30px;
}

.about-index-link {
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  font-size: small;
  height: min-content;
  min-width: 200px;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  margin: 0 40px;
}

.about-index-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mainslider {
  width: 80%;
  height: 500px;
  background-image: url(../images/slider/art.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background-image 0.6s ease-in-out;
}

/* MOBILE MENU */

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .menu {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #130019bb;
    flex-direction: column;
    gap: 0;
    transition: right 0.3s ease-in-out;
    backdrop-filter: blur(2px);
    /* border-left: 0.5px solid rgba(255, 255, 255, 0.129); */
  }

  .menu.active {
    right: 0;
  }

  .menu a {
    padding: 25px 20px;
    text-align: center;
    /* border-bottom: 0.5px solid rgba(255, 255, 255, 0.129); */
  }

  .menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .centercontainer {
    width: 100%;
  }

  .index-about {
    width: 100%;
    border: none;
    background-color: transparent;
    margin: 5px 0;
  }
  .index-about:hover {
    background-color: transparent;
  }
  .abouttext-link {
    display: inline;
  }

  .abouttext-link p {
    width: 90%;
  }

  .about-index-link {
    margin: 20px auto;
    display: block;
    width: max-content;
  }

  .mainslider {
    width: 100%;
    height: 500px;
  }
}

.teamtitle {
  text-align: center;
  margin: 10px;
}

.inteam {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
}

.user{
  border: 0.5px solid white;
  border-radius: 10px;
}

.user img{
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 650px) {
  .mainslider {
    height: 200px;
  }
}
