* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  display: grid;
  align-items: center;
  height: 100%;
}

.main-page:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: url("background.png") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.main-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.main-content {
  max-width: 950px;
  min-width: 1vw;
  border: 5px solid #fff;
  background: linear-gradient(to top, #1a4a80, #18bbb8);
  padding: 30px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.title {
  color: #ff922b;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-size: 60px;
  font-family: "DynaPuff", cursive;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #b4540e;
}

.description {
  font-family: "Gluten", cursive;
  font-weight: bold;
  color: #fff;
  font-size: 36px;
  text-align: center;
}

.description a:link,
.description a:visited {
  text-decoration: none;
  color: #ff922b;
}

.description a:hover,
.description a:active {
  color: #fff;
}

.buttons {
  display: flex;
  justify-content: space-around;
  width: 50%;
}

.social-icon:hover,
.social-icon:active {
  fill: #fff;
}

.image {
  display: grid;
  align-items: center;
  justify-content: center;
}
