body {
    background-color: lightgray;
    font-size: 18px;
}

.topnav {
    background-color: #545454;
    height: 25px;
  }
  
  /* Apply to all direct nav links */
  .topnav nav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 1px 8px;
    text-decoration: none;
    font-size: 20px;
  }
  
  .topnav nav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .topnav nav a.active {
    background-color: #38b6ff;
    color: white;
  }
  
  /* Dropdown container */
  .topnav .dropdown {
    float: left;
    position: relative;
  }
  
  /* The toggle link should match the style of other nav links */
  .topnav .dropdown .dropdown-toggle {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 1px 8px;
    text-decoration: none;
    font-size: 20px;
  }
  
  /* Change the background on hover for the dropdown toggle */
  .topnav .dropdown .dropdown-toggle:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Dropdown content – hidden by default */
  .topnav .dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #545454;
    min-width: 160px;
    top: 25px;      
    left: 0;
    z-index: 0;
  }
  
  /* Style for each dropdown item */
  .topnav .dropdown .dropdown-content a {
    float: none;       /* Reset float for dropdown items */
    color: #f2f2f2;
    padding: 8px 12px;
    text-decoration: none;
    text-align: left;
    display: block;
    font-size: 18px;  
  }
  
  /* Hover effect for dropdown items */
  .topnav .dropdown .dropdown-content a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Show dropdown on hover */
  .topnav .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .welcome-banner {
    text-align: center;
    font-size: 2em;
  }

  .logo-centered {
    text-align: center;

  }

  .site_description {
    text-align: center;
    font-size: 18px;
  }

  .quick-links {
    font-size: 14px;
    text-align: center;
  }

  .socials {
    font-size: 14px;
    text-align: center;
  }

  .disclaimer {
    font-size: 16px;
    text-align: center;
  }

  .about-text {
    font-size: 20px;
    text-align: left;
  }

  .navbar__links {
    font-size: 24px;
  }

  .navbar-logo {
    margin-top: 25px;
  }

  #cookie-banner a {
      color: #4CAF50;
      text-decoration: underline;
  }

  #cookie-banner button {
      border: none;
      cursor: pointer;
  }

  #cookie-banner button:hover {
      opacity: 0.9;
  }
