.catalog {
  width: 100vw;
  height: 85vh;
  background-size: cover;
  /* filter: grayscale(70%); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: black;
  width: 80%;
  padding: 50px 0px;
  border-radius: 20px;
  background-size: cover;
  filter: drop-shadow(0px 4px 4px rgb(51, 50, 50));
  background-color: white;
}

.catalog-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 35px;
}

.catalog-subtitle {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 35px;
  padding: 0px 18px;
}

.catalog-btn {
  text-decoration: none;
  color: #216bb3;
  border: 2px solid #216bb3;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
}

.catalog-btn:hover {
  background-color: #216bb3;
  color: white;
}