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

html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #000;
  background-color: #fbe8d5;
  margin: 0;
  padding: 0;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

.container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

.header {
  width: 100%;
  background-color: #225399;
}
.header__inner {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.header__image {
  width: 45px;
  height: 45px;
  display: block;
  margin: 0 5px;
}
.logo {
  width: 250px;
  max-width: 80%;
  display: block;
}

/* Main */

.main {
  text-align: center;
  padding: 30px 0 100px;
  background-color: #fbe8d5;
}
.title {
  text-transform: capitalize;
  font-size: 34px;
  font-weight: 700;
  color: #225399;
}
.subtitle {
  margin: 25px 0 !important;
}
.image__wrapper {
  max-width: 500px;
  margin: 20px auto;
}
.image {
  max-width: 100%;
  width: 100%;
}
.text {
  margin-bottom: 25px;
}

.quiz__main {
  background-color: #fff;
  box-shadow: 0px 0px 27px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 30px 45px 45px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.question {
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
  color: #225399;
  margin-bottom: 25px;
}

.buttons-box__links {
  display: none;
}
.button {
  text-decoration: none;
  display: block;
  cursor: pointer;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: none;
  color: #ffffff;
  background: #225399;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
}
.button:last-child {
  margin-bottom: 0;
}
.button:hover {
  background: #0d2a53;
}
.dot__box {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.dot__item {
  width: 10px;
  height: 10px;

  background: #d9d9d9;
  margin: 0 6px;
  border-radius: 50%;
}
.show {
  display: block !important;
}
.dot__active {
  background-color: #225399;
}

.description_text {
  font-size: 14px;
}

/* Footer */

.footer {
  width: 100%;
  background-color: #383a42;
}
.footer__inner {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.footer__text {
  font-size: 8px;
  line-height: 1.05;
  color: #fff;
  margin-top: 10px;
}
.footer__links {
  display: flex;
  flex-direction: column;
}
.footer__links-item {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  text-align: end;
  margin-bottom: 5px;
}
.footer__links-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  body {
    font-size: 20px;
  }
  .logo {
    width: 200px;
  }
  .main {
    padding: 30px 0 50px;
  }
  .title {
    font-size: 28px;
  }
}
@media (max-width: 440px) {
  body {
    font-size: 16px;
  }
  .header__image {
    width: 34px;
    height: 34px;
  }
  .title {
    font-size: 24px;
  }
  .question {
    font-size: 22px;
  }
  .quiz__main {
    padding: 30px;
  }
  .footer__links-item {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .logo {
    margin-right: 10px;
  }
  .quiz__main {
    padding: 25px;
  }
  .footer__text {
    margin-top: 15px;
  }
}
