* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Comfortaa, cursive;

  font-style: normal;
}

::-webkit-scrollbar {
  width: 0.625rem;
}

::-webkit-scrollbar-track {
  background-color: var(--dark_color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark_color);
  border-radius: 50px;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.5) inset;
}

:root {
  --white_color: #fff;
  --black_color: #000;
  --primary_color: #3a497b;
  --primary_o_color: #0691c4;
  --dark_color: #272b30;
}

body {
  background-color: var(--dark_color);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 85%;
  margin: auto;
}

@media (max-width: 950px) {
  .container {
    width: 90%;
  }
}

@media (max-width: 750px) {
  .container {
    width: 95%;
  }
}

/* loadding */

.loadding {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.loadding.active {
  display: inline;
}

.loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-left: 4px solid #ff3d00;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 950px) {
  .loader {
    width: 85px;
    height: 85px;
  }
  .loader::after {
    width: 85px;
    height: 85px;
  }
}
@media (max-width: 950px) {
  .loader {
    width: 70px;
    height: 70px;
  }
  .loader::after {
    width: 70px;
    height: 70px;
  }
}
