
html, body{
  margin: 0px;
  padding: 0px;
  background-color: rgb(255, 255, 255);
  font-family: Avenir, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgb(53, 50, 65);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}
.main-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

header {
  height: 4rem;
  display: flex;
}

header img {
  z-index: 1;
  margin-left: 20px;
  margin-top: 10px;
}

.back {
  margin-top: -4rem;
  background-image: url(/images/bg-404.svg), linear-gradient(rgb(59, 53, 82), rgb(59, 53, 82) 57%, rgb(223, 84, 64) 153%);
  background-position: center top;
  background-size: 100% 100%;
  padding-top: 6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  min-height: calc(100vh - 64px);
}

.stars {
  position: absolute;
  inset: 0px;
  background-image: url(/images/stars-404.svg);
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: 0px 0px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}

.stars > div {
  width: 100vw;
  height: 100vh;
  position: relative;
  transform: rotate(145deg) translateX(-25%);
}

.star {
  position: absolute;
  height: 2px;
  background: linear-gradient(-45deg, rgb(246, 119, 132), rgba(246, 119, 132, 0));
  border-radius: 999px;
  filter: drop-shadow(rgb(246, 119, 132) 0px 0px 4px);
  animation: 4s ease-in-out 0s infinite normal none running tail, 4s ease-in-out 0s infinite normal none running shooting;
}

.star::before, .star::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0px;
  height: 2px;
  transform: translateX(50%) rotate(45deg);
  border-radius: 100%;
  animation: 4s ease-in-out 0s infinite normal none running shining;
}
.star::after {
  transform: translateX(50%) rotate(-45deg);
}

.star:first-child::before,
.star:first-child::after {
  animation-delay: 6.88s;
}

.star:nth-child(2):before,
.star:nth-child(2):after {
  animation-delay: 2.55s;
}

.star:nth-child(3):before,
.star:nth-child(3):after {
  animation-delay: 8438ms;
}

.star:nth-child(4):before,
.star:nth-child(4):after {
  animation-delay: 8742ms;
}

.star:nth-child(5):before,
.star:nth-child(5):after {
  animation-delay: 4275ms;
}

.star:first-child {
  top: 37vw;
  left: 13vw;
  animation-delay: 6.88s;
}

.star:nth-child(2) {
  top: 44vw;
  left: 34vw;
  animation-delay: 2.55s;
}

.star:nth-child(3) {
  top: 51vw;
  left: 13vw;
  animation-delay: 8438ms;
}
.star:nth-child(4) {
  top: 58vw;
  left: 14vw;
  animation-delay: 8742ms;
}

.star:nth-child(5) {
  top: 65vw;
  left: 80vw;
  animation-delay: 4275ms;
}

@keyframes shooting {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(300px);
  }
}

@keyframes tail {
  0% {
    width: 0px;
  }
  
  30% {
    width: 100px;
  }
  
  100% {
    width: 0px;
  }
}

@keyframes shining {
  0% {
    width: 0px;
  }
  
  50% {
    width: 30px;
  }
  
  100% {
    width: 0px;
  }
}

.content {
  -webkit-box-flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 1rem;
  max-width: 62rem;
  padding: 0px 1rem 6rem;
  margin: auto;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 1.25rem;
  z-index: 1;
  justify-content: flex-end;
}

h2.message{
  font-family: "Source Serif Pro",
  "Times New Roman",
  serif;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1.17;
  margin: 0px;
}
.montains {
  align-items: flex-end;
  background-image: url(/images/mountain-center.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background-position: center top;
  min-height: 24rem;
  width: 100%;
}

.social-list{
  display: flex;
  gap: 1.5rem;
  margin: 20px 0 0 0;
  padding: 0;
}

.social-list li{
  list-style: none;
}

.social-link {
  color: rgb(255, 255, 255);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.social-link svg {
  height: 1.25rem;
  width: 1.25rem !important;
}