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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}


::-webkit-scrollbar {
  display: none;
}

.main {
  width: 100%;
}

.content__btns {
  display: flex;
  justify-content: center;
  padding: 17px 0;
  gap: 15px;
  background: #35363A;
}

.btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #86888A;
}

.btn:hover {
  color: #fff;
  transition: .5s;
}


.content__page {
  width: 100%;
  display: flex;
  justify-content: center;
}

#page {
  width: 100%;
  height: 100vh;
}

.btn__active__escritorio {
  width: 100% !important;
  height: 100vh;
}

.btn__active__tablet {
  width: 700px !important;
  height: 100vh;
}

.btn__active__movil {
  width: 400px !important;
  height: 100vh;
}

@media screen and (max-width: 1024px) {
  .content__btns {
    display: none;
  }
}
