/* CSS formatting for WinterYeti's Cave Website */
/* styles-default.css */

/* Overall page formatting */
.general-body {
    background-color: lightskyblue;
}

/* Custom styles for the navigation bar */
.navbar {
    background-color: #333;
  }
  
  .navbar-brand,
  .navbar-nav .nav-link {
    color: #fff;
    font-size: x-large;
    font-weight:200;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ccc;
  }

  .navbar-nav {
    font-size: large;
  }

  .TL-logo {
    display: block; /* Ensures the image is a block-level element */
    margin-left: auto; /* Centers the image horizontally by setting the left margin to auto */
    margin-right: auto; /* Centers the image horizontally by setting the right margin to auto */
  }

  /* Custom styles for the accordion subheaders*/
  .card-header {
    background-color: #007bff;
  }

  .card-header h2 button {
    color: #fff;
    font-size: 1.5rem; /* Increase the font size of the subheader titles */
}
  
  .card-body {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-top: none;
  }
  