@font-face {
  font-family: Roboto;
  src: url(./img/Roboto-Italic-VariableFont_wdthwght.ttf) format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  font-family: Roboto;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

body,
html {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000000;
}

main {
  flex-grow: 1; /* занимает всё доступное пространство */
}

.header {
  background-color: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 0;
  width: 100%;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_wrapper {
  width: 660px;
  background-color: #111111;
  padding: 28px 65px 78px 65px;
  border-radius: 12px;
  margin-top: 74px;
  margin-bottom: 134px;
}

.container_wrapper-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.container-title {
  color: white;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  margin-bottom: 11px;
}
.container-text {
  color: white;
  font-size: 22px;
  text-align: center;
  margin-bottom: 55px;
}
.container-img-carousel {
  display: flex;
  gap: 12px;
  margin-bottom: 51px;
}
.container-btn-wrapper {
  display: flex;
  justify-content: center;
}
.container-btn {
  color: white;
  background: linear-gradient(
    181.14deg,
    #7638fa -28.83%,
    #d300c5 2.24%,
    #ff0069 36.98%,
    #ff7a00 85.42%,
    #ffd600 123.81%
  );
  font-size: 24px;
  padding: 18px 0;
  width: 529px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

footer {
  flex-shrink: 0;
  background: #000;
  color: #fff;
  padding: 10px;
}

.footer {
  text-align: center;
}

.footer-link {
  color: #929292;
  font-size: 14px;
  margin-top: 18px;
}

.footer-link-wrapper {
  margin-bottom: 24px;
}

.footer-copyright {
  margin-bottom: 43px;
  color: #929292;
}

@media (max-width: 600px) {
  .container_wrapper {
    width: 95vw;
    margin-top: 34px;
  }
  .container-title {
    font-size: 24px;
  }
  .container-text {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .container-img-carousel {
    gap: 5px;
    justify-content: center;
  }
  .container-img-carousel img {
    max-width: 100px;
  }
  .container-btn {
    margin: 0 17px;
    font-size: 20px;
    padding: 21px 17px;
  }
  .container_wrapper {
    padding: 29px 8px 38px 8px;
  }
  .footer-link {
    margin-right: 15px;
  }
  .footer-link-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
