/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* GENERAL */
body {
  background-color: #ffd6d6; /* soft pink background */
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* MAIN TITLE */
.main-title {
  text-align: center;
  font-size: 3em;
  color: #ff7b9c; /* pinky color */
  margin: 40px 0;
  /* ✨ Font slot — you can change this font below ✨ */
  font-family: "Pacifico", cursive;
}

/* SUBTITLE */
.subtitle {
  text-align: center;
  font-size: 2em;
  color: #ff7b9c; /* same color as main title */
  margin: 0 20px;
  /* ✨ Font slot for subtitle */
  font-family: "Dancing Script", cursive;
}

/* TEXT BLOCKS (cadres) */
.text-block {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 40%;
  min-width: 250px;
  margin: 20px;
}

/* TEXT COLORS */
.black-text {
  color: #000000;
}

.white-text {
  background-color: transparent;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* TITLES INSIDE CADRES */
.block-title {
  color: #ff7b9c;
  /* ✨ Font slot for block title */
  font-family: "Quicksand", sans-serif;
}

/* IMAGES */
.small-pic {
  width: 120px;
  border-radius: 10px;
}

.large-pic {
  width: 400px;
  border-radius: 20px;
}

.large-pic {
  width: 350px;
  border-radius: 20px;
}

.tiny-pic {
  width: 80px;
  display: block;
  margin-top: 10px;
}

/* LAYOUT */
.container {
  width: 90%;
  margin: 0 auto;
}

.row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.image-block {
  position: relative;
  display: inline-block;
}

/* THE STICKER (nyan cat) */
.sticker {
  position: absolute;
  bottom: -25px;
  right: -20px;
  width: 70px;
  z-index: 5;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Make the page feel taller */
html, body {
  min-height: 150vh;
}
}