:root {
  --text-color: rgb(250, 235, 215);
  --text-sub: rgb(172, 172, 172);
  --button-color: rgb(82, 6, 223);
  --button-color-hover: rgb(101, 32, 231);
}

main {
  transition: all 0.3s ease-in-out;
}

body {
  background-color: rgb(16, 0, 32);
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  color: var(--text-color);
}

h2 {
  color: var(--text-sub);
}

p {
  color: var(--text-color);
  padding: 0 10px;
}

a {
  color: var(--text-color);
  text-decoration: none;
  height: 100%;
  padding: 20px;
}

button {
  background-color: var(--button-color);
  border: none;
  border-radius: 5px;
  padding: 10px;
  margin-left: 30px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

button:hover,
button:focus,
button:active {
  background-color: var(--button-color-hover);
  transform: scale(1.3);
}

main.slide {
  position: absolute;
  animation: slide 1s forwards;
}

@keyframes slide {
  0% {
    top: 50%;
  }
  100% {
    top: -1000px;
  }
}