html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-family: "Avenir", sans-serif;
  background-color: #040714;
  color: #fff;
  padding: 0px;
  margin: 0px;
}

h2 {
  font-size: 1.5rem;
  margin: 0;
}

.button-container {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4d4d4d;
  color: #fff;
  padding: 0px 30px;
  border-radius: 5px;
  border: none;
}

.container-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
}

#detail-container {
  z-index: 4;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  transition: visibilty 4s ease;
}