.blog-header-logo{
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  display: block; 
  text-decoration: none;
  color: #0b0909; 
}

/* General body styling (optional) */
body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* Logo/title styling */
.blog-header-logo {
  font-family: "Libre Baskerville", serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  display: block;
  color: #222;
  text-decoration: none;
}

/* Time Travel jumbotron styles */
.jumbotron-time-travel {
  background-image: url("/images/time-travel.jpg"); /* Make sure your image is here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 3rem;
  border-radius: 1rem;
  color: white;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Overlay for contrast */
.jumbotron-time-travel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  z-index: 0;
}

/* Content stays on top of the overlay */
.jumbotron-time-travel .col-md-8 {
  position: relative;
  z-index: 1;
}

/* Make the text pop */
.jumbotron-time-travel h1,
.jumbotron-time-travel p {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Optional: make inner content slightly glassy */
.jumbotron-time-travel .col-md-8 {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(3px);
}

/* Link styling inside jumbotron */
.jumbotron-time-travel a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.jumbotron-time-travel a:hover {
  color: #ffd700;
  text-decoration: none;
}
