* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  color: #9f4141;
  font-family: "Poppins";
}

/* Playwrite AU TAS, Poppins */

body {
  background-color: #fcede6;
}

.heart__div {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 1.25em;
  padding-right: 1.25em;
}

.heart__img,
.heart__img::after {
  width: 65px;
}

.heart__img:hover {
  width: 70px;
}

.center__div {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.center__div--nav-clicked {
  margin-top: 30px;
  text-align: center;
}

.info__img {
  width: 200px;
}

.info__title {
  font-size: 1.65rem;
}

.info__title:hover,
.small-icon:hover {
  cursor: pointer;
}

.info__message {
  font-size: 1.25rem;
  max-height: 50vh;
  overflow-y: auto;
}

.time__div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.time__list {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  list-style: none;
}

.text__small {
  font-size: 0.75rem;
}

.events__div {
  margin-top: 1.25rem;
}

.small-icon {
  font-size: 0.6em; /* Pas dit aan voor de gewenste grootte */
  margin-left: 10px; /* Optioneel: wat ruimte tussen de tekst en het icoon */
  vertical-align: middle; /* Zorg ervoor dat het icoon mooi uitgelijnd is met de tekst */
}

#nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nav--clicked {
  display: none;
}

#nav__thijs {
  font-size: 1.5em;
  font-weight: 750;
  margin: 20px;
  cursor: pointer;
}

.nav__item {
  padding: 10px 20px;
  text-align: center;
  background-color: hsl(19, 68%, 88%);
}

.nav__item:hover {
  font-weight: bold;
  background-color: hsl(19, 59%, 82%);
  cursor: pointer;
}

/* Animation 







*/

.hidden {
  display: none;
}

.fade-in {
  animation: fadeIn 0.4s forwards;
}

.fade-out {
  animation: fadeOut 0.4s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
