header {
  text-align: center;
  padding: 10px;
}

.mainTitle {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #1e3a8a, #72a8ff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 10px;
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
}

.mainTitle:hover {
  transform: scale(1.05);
}

/* Tab Menu Styling */
.tabmenu {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
background-color: darkblue;
border-radius: 3px;
padding: 0;
margin: 0;
list-style: none;
}

.tabmenu li {
flex: 1 1 auto;
text-align: center;
}

.tabmenu a {
display: block;
padding: 12px 20px;
color: darkblue;
background-color: white;
text-align: center;
box-shadow: darkblue .25px .25px .25px .25px;
font-size: 16px;
white-space: nowrap;
transition: background-color 0.3s ease, color 0.3s ease;
}

.tabmenu a:hover {
background-color: darkblue;
color: #fff;
}

.tabmenu a.active {
background-color: darkblue;
color: white;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
.tabmenu {
  display: flex;
}

.tabmenu a {
  font-size: 14px;
  padding: 10px 16px;
}
}
/* Tab Menu Styling End */

/*GIF Ad Style*/
.gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: min-content;
  }
  
  .centered-gif {
    width: 100%;
    max-width: 350px;
    max-height: 125px;
    border: 1px solid #555;
    border-radius: 5px;
  }