@import url('/styles/commons.css');

body {
  --background-url: url('/images/tulip/img-min.jpg');
}

h1,
h2 {
  text-shadow: .6px .6px .6px rgb(47, 22, 76),
              -.6px -.6px .6px rgb(47, 22, 76),
               .6px -.6px .6px rgb(47, 22, 76),
              -.6px .6px .6px rgb(47, 22, 76);
  margin: 0;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
  text-align: center;
}

body > a {
  text-decoration: none;
  color: white;
}

.heart-shape {
  margin-bottom: 3rem;
  width: 12rem;
}

#carousel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: auto;
  justify-content: flex-start;
  margin-bottom: 2rem;
  overflow-x: scroll;
  text-align: center;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

#carousel a {
  color: white;
  flex: 1;
  margin: 1rem;
  max-width: 50%;
  min-width: 30%;
  text-decoration: none;
  transition: all .2s;
}

#carousel a:hover {
  transform: scale(1.05);
}

#carousel a figure {
  margin: 0;
  width: 100%;
}

#carousel a figure span {
  border-radius: 50%;
  border: .2rem solid white;
  display: inline-block;
  font-size: 1.5rem;
  height: 3rem;
  line-height: calc(3rem - .2rem);
  margin-bottom: .8rem;
  width: 3rem;
}

#carousel a figure figcaption {
  font-size: 1.5rem;
}

@media (max-width: 48rem) {
  h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  #carousel a figure span {
    border-radius: 50%;
    border: .15rem solid white;
    display: inline-block;
    font-size: 1.15rem;
    height: 2.2rem;
    line-height: calc(2.2rem - .15rem);
    margin-bottom: .8rem;
    width: 2.2rem;
  }

  #carousel a figure figcaption {
    font-size: 1.2rem;
  }
}
