body {
  background-image: url('./images/for-paralax.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 60px 0;
  box-sizing: border-box;
}

img {
  width: 300px;
  max-width: 100%;
  margin: 40px 0;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-weight: 300;
  font-size: 6em;
  text-shadow: 3px 3px 6px black;
  margin: 0;
}

span {
  display: block;
  margin-top: 40px;
  font-size: 25px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  text-shadow: 3px 3px 6px black;
}

div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 60px;
  flex-flow: wrap;
}

@media (max-width: 550px) {
  div {
    gap: 35px;
  }
}

a {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  padding: 0px 42px;
  border-radius: 20px;
  font-size: 0.9em;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  background: #c82828;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  box-shadow: 3px 3px 6px black;
  font-family: 'Roboto';
  text-decoration: none;
  width: max-content;
  transition: .2s ease-in-out all;
}

a:hover {
  background-color: #961616;
}