html,
body {
  margin: 0;
  padding: 0px;
  align-items: center;
  text-align: center;
  background: #000000;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
  font-family: "Inter";
  overflow-x: hidden;
  overflow-y: hidden;
  border: 0;
  color: white;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

main {
  z-index: 0;
}
.collections {
  display: flex;
  margin-bottom: 32px;
}
.text-0 {
  color: white;
  background: black;
  padding: 12px;
  font-size: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.text-1 {
  cursor: pointer;
  color: white;
  background: black;
  padding: 12px;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-left: 24px;
  margin-right: 24px;
  width: 200px;
  transition: 0.2s ease;
  border: 2px solid white;
  text-decoration: none;
}
.text-1:hover {
  transform: scale(1.1);
}

.logo {
  width: 120px;
  margin-bottom: 24px;
  transition: 0.2s ease;
}

.logo:hover {
  transform: rotate(-90deg) scale(0.8);
}
.rrss-container {
  display: flex;
  align-items: center;
}
.rrss {
  cursor: pointer;
  background: black;
  padding: 20px;
  transition: 0.2s ease;
  border: 2px solid white;
  margin-right: 12px;
  margin-left: 12px;
}
.rrss:hover {
  transform: scale(1.5);
}
.rrss img {
  width: 24px;
  transition: 0.2s ease;
}

.main-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
}

canvas {
  display: block;
  position: fixed;
  top: 0px;
  height: 0px;
  z-index: 0;
}

@media (max-width: 700px) {
  .collections {
    flex-direction: column;
  }
  .text-1 {
    margin-bottom: 24px;
  }
}
