* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: url("../assets/register.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 2rem 1rem;
  font-family: GraphikLight;
}

h1 {
  text-shadow: 0px 0px 8px rgb(255, 255, 255);
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

.buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.buttons a {
  display: inline-block;
  color: #fff;
  padding: 1rem 1.5rem;
  text-decoration: none;
  margin: 1rem 0;
  text-shadow: 0px 0px 8px rgb(255, 255, 255);
  transition: 0.4s all ease-in-out;
  font-size: 18px;
}

a:hover {
  background: linear-gradient(to left, #21d4fd, #b721ff);
}

.border-gradient {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
}
.border-gradient-purple {
  border-image-source: linear-gradient(to left, #21d4fd, #b721ff);
}

.footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.footer img {
  width: 100px;
  height: 100px;
}
