* {
  margin: 0;
  padding: 0;
}

body {
  background: #151015ea;
  color: #eee;
}
/* -----------------HEADER------------------ */
header {
  position: relative;
  height: 150px;
  background: linear-gradient(
    90deg,
    rgba(21, 0, 36, 1) 0%,
    rgba(76, 43, 103, 1) 48%,
    rgba(210, 129, 146, 1) 100%
  );
}

.logo {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 20px;
}

header ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: cen;
}
header ul li {
  margin-top: 60px;
}
header ul li a {
  font-size: 24px;
  color: azure;
  text-decoration: none;
  text-transform: uppercase;
}
header ul li a:hover {
  color: #fab;
  text-shadow: 4px 3px 5px #fab, -4px -3px 5px #fab;
}
/* -----------------MAIN------------------ */

.about-section {
  height: 900px;
  padding: 40px;
  background-image: url(./images/bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

h1 {
  font-family: quicksand, sans-serif;
  font-weight: 500;
  font-size: 1.8em;
  text-align: center;
}

.blue-wrapper {
  border: 2px solid #05d2d3;
  background-color: rgba(5, 210, 211, 0.2);
  text-align: center;
  padding: 5px;
  margin-bottom: 30px;
}

.division {
  height: 1px;
  opacity: 0.5;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: -1px 10px 34px 50px rgba(255, 255, 255, 0.84);
}
.hunter-section {
  padding: 50px;
  height: 900px;
  background-image: url(./images/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.pink-wrapper {
  border: 2px solid #d29;
  border-radius: 1em;
  background-color: rgba(5, 210, 211, 0.2);
  text-align: center;
  padding: 5px;
  margin-bottom: 30px;
}

.click-btn {
  display: block;
  width: 130px;
  height: 130px;
  margin-left: auto;
  margin-right: auto;
  /* padding: up right down left; */
  padding: 5px 10px 5px 10px;
  text-transform: uppercase;
  border-radius: 50%;
  border: 5px dashed #99858c;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
}

.click-btn:hover {
  color: #5c1023;
  text-shadow: 2px 2px 7px #92113c;
  transform: scale(0.95);
  font-size: 18px;
  border: 5px dashed #69102f;
}

.hll-wrapper {
  background-color: rgba(255, 170, 187, 0.4);
  max-width: fit-content;
  border: 2px solid #fab;
  border-radius: 1em;
  padding: 0em 0.5em;
}
.gridContainer {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.gridItem {
  font-weight: bold;
  background-color: #fab;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gridItem:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* -----------------FOOTER------------------ */

footer {
  position: relative;
  height: 150px;
  background: linear-gradient(
    90deg,
    rgba(21, 0, 36, 1) 0%,
    rgba(76, 43, 103, 1) 48%,
    rgba(210, 129, 146, 1) 100%
  );
}
footer p {
  text-align: center;
  font-size: 18px;
  padding-top: 70px;
}
.logo2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 150px;
}

/* ======Counter Page=========== */
.main-page-link {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
}
.main-page-link:hover {
  color: #92113c;
}
.counter {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 50px;
}

.btn-wrapper {
  display: flex;
}
