html {
  font-size: 0.52083vw;
}

body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  font-size: 1.8rem;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.central {
  background: url(/assets/img/cbg.jpg) top center no-repeat;
  background-size: cover;
  width: 50rem;
  height: 50rem;
  text-align: center;
  padding: 4rem 4rem 0;
  border-radius: 2rem;
  box-shadow: 1px 9px 15px 0px #5b5b5b54;
  margin-top: -20rem;
}

.central__logo {
  width: 25rem;
}

.central__logo_2 {
  width: 35rem;
}

@media (min-width: 2000px) {
  .central {
    height: auto;
    margin-top: 2rem;
  }
 
}

@media (min-width: 1025px) {
  body {
    background: url(/assets/img/bg.jpg) top center no-repeat fixed;
    background-size: cover;

  }

}

@media (min-width: 576px) and (max-width: 1024px) {
  body {
    background: url(/assets/img/bg1024.jpg) top center no-repeat fixed;
    background-size: cover;

  }

}

@media (max-width: 575px) {
  html {
    font-size: 2.6666666667vw;
  }

  body {
    background: url(/assets/img/bg575.jpg) top center no-repeat;
    background-size: cover;
    font-size: 1.8rem;

  }

  .central {
    width: 26rem;
    height: auto;
    padding-bottom: 3rem;
    margin-top: -10rem;
  }

  span {
    display: block;
    text-align: center;

  }

  .central__logo_2 {
    width: auto;
  }

}

p {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  line-height: 145%;
}

p.last {
  margin-top: 3rem;
}

p a {
  color: #0080ff;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
  border-bottom: 1px solid #0080ff;
}

p.lk {
  font-size: 1.25rem;
  margin-top: -1rem;
}

p a:hover {
  border-bottom: 2px solid #0080ff00;
}