body,
html {
  height: 100%;
  margin: 0;
  background-color: var(--background);
  color: var(--text);
}

.landing-page {
  background-image: linear-gradient(var(--background), var(--secondary), var(--secondary), var(--primary));
  min-height: 100vh;
  height: auto;
  position: relative;
}

.landing-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 128px
}

.landing-page-text {
  font-family: "DM Sans", serif;
  font-size: 23px;
}

.events-title {
  font-family: "Cormorant Garamond", serif;
}

.text-pink {
  color: var(--accent);
}

.calendar-title {
  font-size: 64px;
  font-family: "Cormorant Garamond", serif;
}

@media screen and (max-width: 500px) {
  .landing-page-title {
    text-align: center;
    font-size: 50px;
    font-weight: 50;
    font-family: "Cormorant Garamond", serif;
    color: var(--dark-text);
    border-bottom: 2px solid var(--dark-primary);
  }

  .landing-page-text {
    text-align: center;
    font-family: "DM Sans", serif;
    font-size: 18px;
    color: var(--dark-text);
  }
}


.card-like {
  background-color: var(--secondary);
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  border-radius: 60px;
  text-align: center;
}

.card-like.purple {
  background-color: var(--primary);
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  border-radius: 60px;
  text-align: center;
}

.card-like:hover {
  background-color: var(--accent);
}

.card-like img {
  width: 60px;
  height: auto;
  border-radius: 12px;
}

#posters .splide__slide {
  height: 320px;
}

#posters .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

:root {
  --text: #080212;
  --background: #fdfaff;
  --primary: #dfccff;
  --secondary: #ffd1e9;
  --accent: #ec4b7b;
}

/* MODAL CSS RULES */

#imgModal .modal-dialog {
  max-width: 100%;
  margin: 0;
}

#imgModal .modal-content {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}

#modalImg {
  max-width: 100%;
  max-height: 90vh;
  height: auto;
  width: auto;
  object-fit: contain;
}