*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #ffffff 0%, #e1e8ed 100%);
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.wrapper-1 {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wrapper-2 {
  padding: 30px;
  text-align: center;
}

h1 {
  /* font-family: Outfit; */
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: center;


}

.wrapper-2 p {
  margin: 0;
  font-family: Outfit;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;

}

.go-home {
  color: #fff;
  background: #5858ff;
  border: none;
  padding: 10px 0px;
  margin: 30px 0;
  border-radius: 5px;
  width: 60%;
  text-transform: capitalize;
  box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.go-home:hover {
  background: #87a8da;
  transform: scale(1.05);
}

.footer-like {
  margin-top: auto;
  background: #D7E6FE;
  padding: 6px;
  text-align: center;
  width: 100%;
}

.footer-like p {
  margin: 0;
  padding: 4px;
  color: #5866ff;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 1px;
}

.footer-like p a {
  text-decoration: none;
  color: #58ff74;
  font-weight: 600;
}

@media (min-width: 360px) {
  h1 {
    font-size: 20px;
  }

  .go-home {
    margin-bottom: 20px;
  }
}

@media (min-width: 600px) {
  .content {
    max-width: 1000px;
    margin: 0 auto;
  }

  .wrapper-1 {
    height: initial;
    max-width: 505px;
    margin: 5px auto 0;
    box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
    border-radius: 20px;
  }
}