:root {
  /* Primary Theme Colors */
  --primary-color: #214a46;
  --secondary-color: #fe696a;
  --accent-color: #4b543b;
  /* Background and Text */
  --background-color: #e5f5ee;
  --text-color: #181818;
}

/* Example usage */
body {
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
}

@font-face {
  font-family: "Roboto";
  src: url("../css/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.times-roman {
  font-family: "Times New Roman", Times, serif;
}

.tomkin {
  font-family: "Tomkin", Times, serif;
}

/* Overlay starts translated down, hidden */
.overlay {
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}
/* On hover, slide overlay up and show */
.group:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}
