* {
  margin: 0;
  padding: 0;
  user-select: none;
  font-family: Inter, sans-serif;
  font-weight: 700;
  color: white;
  text-decoration: none;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background: #272934;
}
body::-webkit-scrollbar {
  display: none;
}
.header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1%;
}
.header .left {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  margin-right: auto;
  margin-left: 3.5%;
}
.header .left:hover {
  transform: scale(1.05);
}
.logo {
  width: 50px;
  border-radius: 12px;
}
.left p {
  margin-left: 10px;
}
.right {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 2.5%;
}
.right a p {
  margin-left: 20px;
  color: rgb(161, 161, 161);
  transition: 0.3s;
  font-size: 18px;
}
.right a p:hover {
  color: rgb(160, 17, 255);
  filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
  border-bottom: 1px solid rgb(160, 17, 255);
  transform: scale(1.03);
  transition: 0.6s;
}
.main-sector {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
}

#more-btn {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 10.5%;
  margin-left: 15px;
  color: rgb(161, 161, 161);
  transition: 0.3s;
  font-size: 18px;
}
#more-btn:hover {
  color: rgb(160, 17, 255);
  filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
  border-bottom: 1px solid rgb(160, 17, 255);
  transform: scale(1.03);
  transition: 0.6s;
}
#more-list {
  transform-origin: top center;
  transform: scaleY(0);
  position: absolute;
  background-color: #1d222b;
  padding: 10px;
  width: 103px;
  border-radius: 0 1vh 1vh 1vh;
  z-index: 2;
  cursor: auto;
  transition: 0.3s ease-in;
}

.more-list-item {
  color: white;
  text-decoration: none;
  width: 150%;
  display: block;
  padding: 6%;
}

.more-list-item:hover {
  color: rgb(160, 17, 255);
  filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
}

#more-list hr {
  margin: 2% auto;
  width: 96%;
}

#more-btn:hover #more-list {
  transform: scaleY(1);
  transition: 0.3s ease-out;
}

.section-extra-flex {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  filter: drop-shadow(10px 10px 30px rgb(160, 17, 255));
}

.section-extra-flex div {
  color: white;
  width: 350px;
  height: auto;
  border-radius: 5px;
  padding: 10px 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.section-extra-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.section-extra-flex div {
  flex: 1 1 200px;
  margin: 100px;
  background-color: #b500fd;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.7s ease, transform 0.7s ease;
}

.section-extra-flex div:hover {
  background-color: rgb(160, 17, 255);
  transform: scale(1.02);
}

.section-extra-flex div img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.section-extra-flex div h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: black;
  transition: color 0.7s ease;
}

.section-extra-flex div p {
  font-size: 14px;
  margin-bottom: 5px;
  color: black;
}

.section-extra-flex div:hover h3,
.section-extra-flex div:hover p {
  color: black;
}
