* {
  font-family: "IBM Plex Sans", sans-serif;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wrapper {
  display: flex;
  gap: 200px;
  justify-content: center;
  flex: 1;
  align-items: center;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.item__image {
  display: flex;
  align-items: flex-end;
  height: 150px;
}

.item__image img {
  max-height: 100%;
  max-width: 100%;
}

.item__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.logo-v2 {
  height: 100px;
}

.logo-v3 {
  height: 100px;
}

.button {
  padding: 16px 24px;
  background-color: #000;
  color: #fff;
  border: 3px solid #000;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 100%;
}

.button--secondary {
  background-color: #fff;
  color: #000;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
}

.footer * {
  margin: 0;
}

.footer__logo {
  height: 20px;
}

.footer_link {
  color: #000;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .wrapper {
    flex-direction: column-reverse;
    gap: 0px;
    height: auto;
    padding-top: 40px;
  }

  .item {
    gap: 24px;
  }

  .footer {
    padding-top: 50px;
    position: static;
  }
}
