

.item {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 0cap;
  border-style: solid;
  border-color: #000; */
}

.container {
  opacity: 0;
  position: relative;
  overflow: auto;
  /* add this to make the container scrollable */
}

section {
  padding: 20px;
  text-align: center;
}

canvas {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background-color: #000;
  height: 100vh;
}

.font-bold {
  color: white;
  font-weight: bold;
  font-size: 64px;
  text-shadow: 2px 2px #3d3939;
  white-space: pre-line;
}
.center-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 100000;
}

.youtube-embed {
  opacity: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube-embed :active {
  opacity: 1;
}
.items-center {
  align-items: center;
}

.group {
  margin-top: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease-in-out;
}

.right-arrow {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid black;
  display: inline-block;
}

.group:hover {
  background-color: black;
}

.group:hover .right-arrow {
  border-left-color: white;
}

.container-hourtime {
  position: fixed;
  /* Firefox */
  top: -moz-calc(50% - 150px);
  /* WebKit */
  top: -webkit-calc(50% - 150px);
  /* Opera */
  top: -o-calc(50% - 150px);
  /* Standard */
  top: calc(50% - 150px);
  left: -moz-calc(50% - 150px);
  left: -webkit-calc(50% - 150px);
  left: -o-calc(50% - 150px);
  left: calc(50% - 150px);
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}