@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #000000;
}

.page {
  min-height: 100vh;
  background: #ffffff;
}

.first-page {
  padding: 70px 24px 40px;
  text-align: center;
}

.main-title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.description {
  max-width: 1820px;
  margin: 360px auto 0;
  font-size: 39px;
  line-height: 1.35;
  font-weight: 400;
}

.second-page {
  position: relative;
  min-height: 100vh;
  padding-bottom: 220px;
}

.books-title {
  margin: 0;
  padding-top: 95px;
  padding-left: 165px;
  font-size: 48px;
  font-weight: 700;
}

.cloud-button {
  position: absolute;
  left: 190px;
  top: 54%;
  width: 420px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bedcff;
  color: #000000;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  border: 3px solid #404040;
  border-radius: 60px;
  z-index: 1;
}

.cloud-button::before,
.cloud-button::after {
  content: "";
  position: absolute;
  background: #bedcff;
  border: 3px solid #404040;
  border-radius: 50%;
  z-index: -1;
}

.cloud-button::before {
  width: 110px;
  height: 80px;
  left: 35px;
  top: -25px;
}

.cloud-button::after {
  width: 130px;
  height: 90px;
  right: 30px;
  top: -30px;
}

@media (max-width: 900px) {
  .main-title {
    font-size: 34px;
  }

  .description {
    margin-top: 180px;
    font-size: 24px;
    max-width: 90%;
  }

  .books-title {
    padding-left: 30px;
    padding-right: 20px;
    font-size: 34px;
  }

  .cloud-button {
    position: static;
    width: 300px;
    height: 95px;
    margin: 180px auto 0;
    font-size: 24px;
  }
}
