html {
  scroll-behavior: smooth;
}

.lorem {
  max-width: 786px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;

  border-top: 2px solid #091018;
  padding: 2rem;

  h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
  }

  p {
    font-size: 18px;
    color: #c2cde7;
    font-weight: normal;
    line-height: 28px;
    margin-block-end: 1rem;
    margin-block-start: 1rem;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #0984e3;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
