body {
  background: rgb(27,62,115);
  background: radial-gradient(circle, rgba(27,62,115,1) 0%, rgba(14,38,74,1) 100%);
  color: #FFFFFF;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
}

main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

h1 {
  display: none;
}

.logo {
  max-width: 350px;
  height: auto;
}

a {
  color: #FFF;
  text-decoration: none;
}

p {
  text-align: center;
  font-size: 1rem;
  margin-top: 1rem;
}

.buttons {
  display: flex;
  max-width: 400px;
  width: 100%;
  min-width: 320px;
  flex-direction: column;
  row-gap: 1rem;
  margin: 4rem 0 2rem 0;
}

.button {
  display: block;
  padding: 1rem;
  border: 2px solid #FFF;
  text-align: center;
  backdrop-filter: blur(5px);
  border-radius: 50px;
  transition: background .5s ease, color .5s ease;
}

.button:hover {
  background: #FFF;
  color: #121314;
  transition: background .5s ease, color .5s ease;
}
