@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0%;
  margin: 0%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
 
}
html ::-webkit-scrollbar {
  display: none;
}

.header {
  border-bottom: 2px solid #0ce3ac;
  background-color: #222;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* position: fixed;
  width: 100%;
  top: 0;
  z-index: 2; */
}

.header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.header a:hover {
  color: #0ce3ac;
}

.header .selected {
  color: #344440;
}

.header .containerr {
  width: 45%;
  margin: auto;
}

.header .logo {
  display: inline-block;
  cursor: pointer;
  font-size: 1.8rem;
}

.header .logo a {
  -webkit-transition: .4s ease;
  transition: .4s ease;
}

.header ul {
  float: right;
  list-style: none;
}

.header ul li {
  display: inline-block;
  padding: .5rem;
  margin: 0 .3rem;
  cursor: pointer;
}

.header ul li a {
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
@media only screen and (max-width: 930px) {
  .header .logo {
    display: none;
  }
}

@media only screen and (max-width: 710px) {
  .header .containerr {
    width: 100%;
  }
}
/*# sourceMappingURL=.header.css.map */