


/* General page styling */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background: #fafafa;
  color: #333;
}
header {
    background-color: #ffcc66;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
header a:hover {
    color: #ff6600;
}



h1 {
    color: #333;
}

h2 {
    color: #cc3300;
}

a {
    text-decoration: none;
    color: #007BFF;
    font-size: 1.2em;
}
a:hover {
    text-decoration: underline;
}

/* Navigation links */
nav {
  margin-bottom: 30px;
  text-align: center;
}

nav a {
  margin: 0 10px;
  padding: 6px 12px;
  text-decoration: none;
  background: #4a90e2;
  color: white;
  border-radius: 4px;
  font-weight: bold;
}

nav a:hover {
  background: #357ac8;
}

/* Section styling */
section {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

section h2 {
  margin-top: 0;
  color: #444;
}

/* Joke list styling */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

#promo-div {
  /* Add display flex or grid if you want these side-by-side */
  display: flex;
  gap: 20px;
}

.promo-tile-div {
  /* Set standard height */
  height:300px;
  
  /* Background properties to scale the image nicely */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
  /* Position relative so the anchor can fill this container */
  position: relative;
  float: left;
  
  /* Set a fallback width if not using a grid system (e.g., 33% for 3 across) */
  width: 33.33%; 
}

.promo-tile-div_2 {
    height:272px;
    width:100%;
     /* Background properties to scale the image nicely */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
   /* Position relative so the anchor can fill this container */
  position: relative;
}

#otter-promo.promo-tile-div {
 
  background-position: top center;
 
}

.promo-tile-div a.promo-banner {
  /* Force the anchor to fill the entire parent div */
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;

  /* Remove default link underline */
  text-decoration: none; 
}

.promo-tile-div_2 a.promo-banner {
  /* Force the anchor to fill the entire parent div */
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;

  /* Remove default link underline */
  text-decoration: none; 
}

.promo-tile-div a.promo-banner:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.promo-tile-div_2 a.promo-banner:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.promo-banner {
  color: #ffffff; /* Change text color */
  font-weight: bold; /* Make text bold */
  font-size: 2.2rem; /* Adjust text size */
}

/* Optional: Style the hover effect */
.promo-banner:hover {
  color: #ffffff;
  text-decoration: none;
}



       
    
   
