* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-image: url(back.jpg);
  /* width: 100%; */
  min-height: 100vh;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
}

h1 {
  font-size: 40px;
  text-align: center;
}

.container-Navbar {
  cursor: pointer;
  position: absolute;
  top: 5%;
  right: 5%;
  /* width: 30px; */
  height: 20px;
  width: 20%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.bars-Navbar {
  width: 30px;
  height: 4px;
  background: red;
}

.bars-Navbar::before,
.bars-Navbar::after {
  content: "";
  position: absolute;
  width: 30px !important;
  height: 4px;
  background: red;
}

.bars-Navbar::before {
  margin-top: 9px;
}

.bars-Navbar::after {
  margin-top: 18px;
}

nav {
  position: fixed;
  width: 100%;
  height: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  /* right: 3rem; */
  transform: translateX(-100%);
}

.circle {
  position: absolute;
  top: 91%;
  left: 91%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: -1;
}

nav ul {
  list-style: none;
}

nav ul .list-navbar {
  margin: 50px 0;
}

nav ul .list-navbar a {
  color: red;
  font-size: 2em;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  opacity: 0;
  pointer-events: none;
}

.navbar--list--item {
  font-size: 2rem;
  font-weight: 800;
}

nav ul .list-navbar a:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 3px;
  border-radius: 5px;
  background: red;
  bottom: -10px;
  left: 0;
  transform-origin: left;
  transition: transform 0.1s ease;
  transform: scaleX(0);
}

nav ul .list-navbar a:hover:after {
  transform: scaleX(1);
}

nav .close-Navbar {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 6%;
  right: 5%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

nav h2 {
  position: absolute;
  top: 5%;
  left: 5%;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  font-size: 2em;
}

nav .close-Navbar div::before,
nav .close-Navbar div::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background: #fff;
  transition: background 0.1s ease;
}

nav .close-Navbar div::before {
  transform: rotate(-45deg);
}

nav .close-Navbar div::after {
  transform: rotate(45deg);
}

nav .close-Navbar:hover div::before,
nav .close-Navbar:hover div::after {
  background: rgb(209, 3, 3);
}

@media (min-width: 1000px) and (max-width: 1200px) {
  .circle {
    top: 98%;
    left: 87%;
    width: 60px;
    height: 60px;
    }
}
@media (min-width: 900px) and (max-width: 1000px) {
  .circle {
    top: 98%;
    left: 86%;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 25px;
  }

}

@media (max-width: 900px) {
  .container-Navbar {
    top: 5%;
    margin-right: 10px;
  }

  .circle {
    top: 91%;
    left: 86%;
  }
}

@media (max-width: 680px) {
  .circle {
    top: 91%;
    left: 81%;
  }
}
@media (min-width: 689px) and (max-width: 910px) {
  .circle {
    top: 88%;
    left: 82%;
    }
}
@media (min-width: 500px) and (max-width: 630px) {
  .circle {
    top: 98%;
    left: 76%;
    }
}

@media (max-width: 500px) {
  .container-Navbar {
    top: 5%;
    right: 10px;
  }

  .circle {
    top: 91%;
    left: 72%;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 420px) {
  .container-Navbar {
    top: 5%;
    right: 20px;
  }

  .circle {
    top: 91%;
    left: 67%;
    width: 50px;
    height: 50px;
  }

}


hr {
  border: none;
  border-top: 10px solid red;
  margin: 20px 0;
}

/* 

.logo-container {
  position: fixed;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  margin: 10px;
  padding: 10px;
  z-index: 0;

} */
.logo-container {
  position: fixed;
  display: inline-block;
  /* or position: absolute; */
  top: 0;
  left: 0;
  width: 100px;
  /* Adjust dimensions as needed */
  height: 100px;
  margin: 10px;
  /* Adjust margins as needed */
  padding: 10px;
  /* Adjust padding as needed */
  z-index: 2;
  /* Set a high z-index to ensure it appears above other elements */
}

.logo-container img {
  width: 126%;
  z-index: -1;
  /* Adjust width as needed */
  height: auto;
  /* Adjust height as needed */
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 100%;

}

.contributor-hashtech-logo {
  POSITION: RELATIVE;
  margin-left: 150%;
  margin-top: -163%;
  border-radius: 100%;
}