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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
}

body {
  font-family: 'Roboto', sans-serif;
}

canvas {
  display: block;
}

.description {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ede9fe;
  width: 100%;
  height: 100%;
}

.description__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.description__title {
  font-size: 36px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 20px;
}

.button {
  text-decoration: none;
  text-align: center;
  background-color: #7c3aed;
  color: #fff;
  font-size: 16px;
  line-height: 150%;
  padding: 16px 24px;
  border-radius: 8px;
  min-width: 300px;
}

@media screen and (min-width: 768px) {
  .description__inner {
    max-width: 50%;
  }

  .description__title {
    font-size: 60px;
  }
}
