body {
  margin: 0;
}

.noscript {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.noscript__title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.noscript__subtitle {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.noscript__btn {
  padding: 8px 28px;
  border: none;
  border-radius: 100px;

  cursor: pointer;
  transition: opacity 0.2s, background 0.1s;

  text-decoration: none;
  color: #0085FF;
  background: rgba(47, 168, 255, 0.15);

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.noscript__btn:hover {
  opacity: 0.7;
}

.noscript__btn:active {
  opacity: 1;
  background: rgba(47, 168, 255, 0.3);
}