body {
  font-family: "Rubik", sans-serif;
  background-color: #f9fafa;
  margin: 0;
}

body * {
  box-sizing: border-box;
  text-rendering: optimizelegibility;
}

.container {
  display: flex;
  height: calc(100vh - 110px);
  max-width: 100vw;
  min-height: 600px;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.announcement {
  max-width: 800px;
  margin-bottom: 80px;
}

.announcement h1 {
  font-weight: bold;
  font-size: 36px;
  margin: 0 0 24px;
  color: #03192d;
}

.announcement p {
  font-weight: normal;
  font-size: 20px;
  line-height: 32px;
  color: #4e5e6c;
  margin: 0;
}

.announcement p a {
  color: #000;
}

.products {
  display: flex;
  gap: 60px;
}

.products .alternative {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
}

.products .alternative img {
  margin-bottom: 16px;
}

.products .alternative h2 {
  line-height: 32px;
  color: #03192d;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 12px;
}

.products .alternative a {
  font-family: "Rubik", sans-serif;
  text-decoration: none;
  border-radius: 8px;
  background-color: #03192d;
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #f9fafa;
  text-transform: uppercase;
}

footer {
  padding: 41px 0 41px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1316px;
  padding-left: 45px;
  padding-right: 45px;
  width: 100%;
  margin: 0 auto;
}

.footer-container .links a {
  text-decoration: underline;
}

.footer-container .links {
  display: flex;
  gap: 50px;
}

.footer-container .links a,
.footer-container .links span {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #4f5a65;
}

.footer-container .logos {
  display: flex;
  gap: 36px;
  align-items: center;
}

.footer-container .links a,
.footer-container .logos img {
  transition: opacity 500ms ease;
}

.footer-container .links a:hover,
.footer-container .logos img:hover {
  opacity: 0.5;
}

.footer-container .logos img {
  width: 24px;
  height: auto;
}
