.header{
  position:fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  align-items: center;
  background-image: url('background2.gif');
}

html, body {
  background-color: pink; 
  width: 100%;
}
  body {
    background-image: url('background2.gif'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  


.spacer {height: 100px;}

.navigation a{
  text-decoration: none;
  margin-right: 30px;
  transition: color 0.3s;
}

.navigation a:hover {
  background-color: white;
}

.navigation a{
        font-family: 'Comic Sans MS', cursive; 
        font-style: normal; 
        font-weight: 400;
        font-size: 20px;
      color: hotpink;
  }

  .title:hover {
      background-color: white;
  }
.logo h1 {
  text-decoration: none;
  margin-right: 30px;
  transition: color 0.3s;
}
.logo h1 {
    font-family: 'Lilita One', regular 400; 
    font-size: 40px; 
    font-weight: normal;
    font-style: normal; 
    color: hotpink;
}

.title {
  font-family: "Comic Sans MS", bold;
  color: hotpink;
  text-decoration: none;
  font-size: 50px;
}

.description {
  font-family: "Comic Sans MS", regular;
  color: hotpink;
  text-decoration: none; 
  font-size: 20px;
  justify-content: center;
  max-width: 1300px; /* Adjust the maximum width of the container */
  margin: 0 auto; /* Center the container */
  padding: 20px; /* Add padding inside the border */
}

 .text {
   font-size: 20px;
   flex: 1;
 }

.hover-shadow {
  transition: transform 0.2s, box-shadow 0.2s;
  transition: box-shadow 0.3s ease-in-out;
}

.hover-shadow:active {
  transform: scale(0.95); 
  box-shadow: 10 10 20px rgba(99, 29, 29, 0.3); 
}

.hover-shadow:hover {
  box-shadow: 0 0 2px 2px hotpink;
  transform: scale(1.05); 
}

.hover-shadow:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Change the color and opacity as needed */
}


img {width: 50%;}


.centered-figure {
  text-align: center;
  margin: 20px auto;
}

.centered-figure figure {
  display: inline-block;
  position: relative;
}

.centered-figure img {
  display: block;
  max-width: 100%;
  height: auto;
}

.centered-figure figcaption {
  position: absolute;
  top: 50px;
  left: 15px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  width: 45%;
  text-align: center;
  font-size: 30px; 
  font-weight: 900; 
  color: hotpink; 
}






