:root {
  --col-bg: #fff;
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--col-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2392ac92' fill-opacity='0.21' fill-rule='evenodd'/%3E%3C/svg%3E");

  display: flex;

  align-items: center;
}

.gallery {
  max-width: 100rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 80vw;
  margin: 0 auto;
}

.card {
  display: flex;
  flex: 0.5;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 70vh;
  border-radius: 3rem;
  transition: transform 0.9s linear;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition: flex 0.8s ease-in;
  overflow: hidden;
  color: white;
}

.card.active {
  flex: 5;
}

.card:nth-of-type(1) {
  background-image: url("./img/img-1.jpg");
}

.card:nth-of-type(2) {
  background-image: url("./img/img-2.jpg");
}

.card:nth-of-type(3) {
  background-image: url("./img/img-3.jpg");
}

.card:nth-of-type(4) {
  background-image: url("./img/img-4.jpg");
}

.card:nth-of-type(5) {
  background-image: url("./img/img-5.jpg");
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.content {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease-ingit;
  padding: 0 1rem;
}

.card.active .content {
  opacity: 1;
  transition: opacity 0.5s ease-in 1s;
}

.quote {
  position: relative;
  font-size: 1.5rem;
}

.quote::before {
  content: "\201C";
}

.quote::after {
  content: "\201D";
}

.author {
  font-size: 1rem;
  margin-top: 1rem;
  text-align: right;
  font-style: italic;
}

@media screen and (max-width: 680px) {
  .gallery {
    width: 95vw;
  }
  .card:nth-of-type(4) {
    display: none;
  }

  .card:nth-of-type(5) {
    display: none;
  }
}
