*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Libre Baskerville, sans-serif";
  }

  body{
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #FFF8E7;
  
  
    
    
  /* nav color */
  }
  #slccmenu{background-color: white;
    height: 149px;
    width: 100%;
    
    
    
  }

  #slcclogo{
    width: 157px;
    height: 108px;
    margin-left: 80px;
    margin-top: 17px;
    font-weight: bold;
  }
  #mlist {
    text-align: center;
    list-style: none; /* Remove list bullets */
    padding: 0;
}
#mlist li {
    display: inline-block;
    margin: 1px 10px; /* Add some margin for spacing between bars and links */
}
  #slccmenu ul {
    float: right;
    
  }
  #slccmenu ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 0px;
  }    
  #slccmenu ul li a {
    position: 0px;
    color: black;
    font-size: 17px;
    padding: 10px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-right: 20px;
    padding-right: 5px;

  }
  .menu-bar {
    font-weight: bold;
    color: black;
    font-size: 20px; /* Adjust the font size for the bars */
}

h1 {
    
    text-align: center;
    font-size: 50px;
}

.container{
    padding: 15px 9%;
    padding-bottom: 100px;
}
.container .heading { 
    text-align: center;
    padding-bottom: 15px;
    color:#003865;
    text-shadow: 0 5px 10px rgba(0,0,0,.2);
    font-size: 50px;
}
.container .box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal-width columns */
    gap: 15px;
    justify-content: center; /* Center the grid horizontally */
}
.container .box {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container .box img {
    max-width: 100%; /* Ensure the image doesn't exceed the box width */
    max-height: 100%; /* Ensure the image doesn't exceed the box height */
    display: block; /* Remove any extra space around the image */
    
    margin: 0 auto; /* Center the image horizontally */
}
.sub-heading{
    text-align: center;
    color:#003865;
    

}

html body{
    height: 100%;
}
.container{
    min-height: 100%;
}
.box-container{
    overflow: auto;
    padding-bottom: 100px;
}

footer {
    background: #003865;
    position: relative;
    height: 100px;
    margin-top: -100px;
    clear: both;
}

.container .box-button {
  background-color: #003865;
  color: #fff;
  border: none;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.container .box-button:hover {
  background-color: #001f3f; /* Darker shade on hover */
}

a {
  color: #003865;
}