@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

body {
  background-color: #202020;
  overflow: hidden;
}

.btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 15%;
  height: 100vh;
  row-gap: 5vh;
}

.btn a {
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease-in-out;
  width: fit-content;
}

.btn a:hover {
  color: #c40000;
  transform: scale(1.1);

}
