html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  margin: 0;
  color: white;
}

h1 {
  font-size: 5rem;
  margin: 0;
}

p {
  font-size: 2rem;
}

.full-screen-section {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.color-green {
  background-color: #3fde96;
}

.color-orange {
  background-color: #de973f;
}

.color-purple {
  background-color: #963fde;
}

.scroll-button {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.scroll-button img {
  width: 40px;
  height: 40px;
  opacity: 0.65;
  filter: grayscale(100%) opacity(65%);
}

.scroll-button.up {
  top: 20px;
}

.scroll-button.down {
  bottom: 20px;
}

img {
  pointer-events: none;
}

@media (max-aspect-ratio: 1/1) {
  .scroll-button img {
    width: 100px;
    height: 100px;
  }
  
  .scroll-button.up {
    top: 200px;
  }

  .scroll-button.down {
    bottom: 200px;
  }
}