.home-page, .home-page * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#home-page-body {
  background-color: #250f3e;
}

.home-page {
  width: 100vw;
  height: 100vh;
  background-image: url('/images/home-bg.png');
  background-size: cover;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.home-page__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.home-page__title__separator {
  width: 4px;
  background-color: rgba(220, 220, 240, 0.6);
  height: 40px;
  margin: 0 20px;
}

.home-page__title__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(180, 200, 255, 1);
  max-width: 123px;
}

.home-page__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.home-page__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  border-radius: 32px;
  background-color: rgba(140, 0, 240, 0.2);
  height: 144px;
  flex: 1;
  backdrop-filter: blur(64px);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.home-page__link:hover {
  transform: translateY(-4px);
  background-color: rgba(140, 0, 240, 0.3);
}

.home-page__link:active {
  transform: translateY(-2px);
  background-color: rgba(140, 0, 240, 0.25);
}

.home-page__link-title {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.home-page__link-title img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.home-page__link-description {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(220, 220, 240, 1);
  text-align: center;
}

@media (max-width: 576px) {
  .home-page {
    padding: 32px;
    gap: 32px;
  }
  .home-page__links {
    flex-direction: column;
    gap: 8px;
  }
  .home-page__link {
    padding: 16px;
    height: 80px;
    border-radius: 16px;
    gap: 8px;
    width: 100%;
    flex: none;
  }
  .home-page__link-description {
    font-size: 12px;
    line-height: 16px;
    max-width: 100%;
  }
  .home-page__link-title {
    height: 25px;
  }

  #soyuz-rf-link-logo {
    height: 18px;
  }
}