* {
  font-family: 'Inter';
}

body {
  background-color: #0A1930;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  width: 100vw;
}

#nav_bar {
  height: 70px;
  margin: 0;
  padding: 0;
  background-color: #000000;
  align-items: center;
  position: relative;
  z-index: 2;
}

#my_logo {
  width: 50px;
}

.active-btn {
  color: #0A1930;
  background-color: #00ED64;
}

.deactivate-btn {
  color: white;
  background-color: transparent;
}

.deactivate-btn:hover{
  color: #00ED64;
}

#content {
  height: 675px;
  position: relative;
  z-index: 1;
}


.left {
  align-items: center;
  justify-content: center;
}

h3 {
  font-size: 30px;
}

.name {
  color: #00ED64;
  font-weight: 1000;
}

.green-bg {
  background-color: #066E45;
}

#profile {
  width: 400px;
  border: 2px solid #00ED64;
}


.circle {
  position: absolute;
  border-radius: 50%;
  height: 500px;
  width: 500px;
  border: 1px solid #00ED64;
  z-index: -1;
  box-sizing: border-box;
}


#circle1 {
  top: 90%;
  left: 10%;
  transform: translate(-50%, -50%);
}

#circle2 {
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#circle3 {
  top: 90%;
  left: 90%;
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  body {
      overflow-y: hidden;
  }
}

.hover-bg-dark:hover {
  background-color: #343a40 !important;
  color: white !important;
}

#special {
  overflow-x: hidden;
}

@media (min-width: 992px) {
  #special {
    overflow-x: hidden;
    overflow-y: hidden;

  }
}