.navbar {
  background-color: pink !important;
}
/* styles.css */

/* Font Face for Glacial Indifference */
@font-face {
  font-family: 'Glacial Indifference';
  src: local('Glacial Indifference'), url('pictures/GlacialIndifference-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* Styling for Text Overlay */
.image-background {
  background-image: url("pictures/cal.png");
  background-size: cover;
  width: 1100px;
  height: 600px; /* Adjust the height as needed */
  position: relative;
  z-index: 1; /* Ensure the image has a lower z-index */
}

.navbar {
  font-family: 'Glacial Indifference', sans-serif; /* Set the font for the navbar */
  background-color: pink !important;
  font-size: 19px;
}

/* Styling for Exercise Title */
.exercise-title {
  font-family: 'Glacial Indifference', sans-serif; /* Set the font for the exercise title */
  font-size: 24px; /* Adjust the font size as needed */
  font-weight: bold; /* Optionally make it bold */
  color: #000; /* Set the color of the title */
}

/* Set the font for the entire content */
body {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: 14px;
}