*, *::before, *::after {
  box-sizing: border-box;
}

img, picture, svg, video {
  display: block;
  max-width: auto;
}

input, textarea, button, select {
  font: inherit;
}

* {
  margin: 0;
  padding: 0; 
  font: inherit;
}

body {
  min-height: 100vh;
  background-color: #111;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}

h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  line-height: 3rem;;
  margin: 0 0 2rem 0;
}

p {
  color: #fff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.swiper {
  width: 52.063rem;
  height: 52.063rem;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 0;
  img {
    width: 100%;;
  }
}

.content {
  width: 100%;
  position: relative;
  z-index: 1;
  transform: translate(-19rem);
  p {
    line-height: 2.3rem;
  }
  img {
    margin-bottom: 2rem;
    max-width: 200px;
  }
}

.social {
  display: flex; 
  margin-top: 1rem;
  gap: 1rem;
  a {
    display: flex;
    align-items: center;  
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;;
    color: #009ADE;
    width: 45px;
    height: 45px;
    text-decoration: none;
    i {
      font-size: 1rem;
    }
  }
}

footer {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 1;
  p {
    font-size: 0.5rem;
    color: #666;
    text-align: center;
  }
}

@media (max-width: 81.25rem) {
  body {
    align-items: flex-start;
  }
  .swiper {
    width: 60%;
  }
  .content {    
    padding: 0 2rem;   
    transform: translate(0, 3rem);
  } 
}

@media (max-width: 400px) {
  .content {
    width: 100%;
  }
  .content {
    transform: translate(0,0);
    h2 {
      font-size: 2rem;
      line-height: 2.4rem;
    }
    p {
      font-size: .85rem;
      line-height: 1.6rem;
    }
  }

}

@media (max-height: 30em) {
  body {
    justify-content: flex-start;
  }
  h2 {
    font-size: 1.6rem;
    line-height: 2rem;
    margin: 0 0 1rem 0;
  }
  .swiper {
    height: 100%;
    width: 40%
  }
  .content {
    transform: translate(0, 0);
    margin: 1rem 0 0;
    p {
      font-size: 0.8rem;
      line-height: 1.5rem;
    }
  }
}

@media(min-width: 514px) {
  .content {
    width: 541px;
  }
}

@media (min-width: 81.25rem) {
  footer {
    p {
      font-size: 0.688rem;
    }
  }
}