

/* start of fonts + styles */

h1 {
	font-family: Arial, Helvetica, sans-serif;
	color: darkslategrey;
    font-size: 60px;
    text-align: left;
    line-height: 135%;
    font-weight: bold;
    margin-left: 10%;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(61, 61, 61);
    font-size: 24px;
    margin-left: 10%;
    margin-right: 10%;
    line-height: 175%;
    font-weight: normal;
    justify-content: left;
    text-align: left;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(61, 61, 61);
    font-size: 24px;
    margin-left: 10%;
    margin-right: 10%;
    line-height: 175%;
    font-weight: bolder;
    justify-content: left;
    text-align: left;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
	color: rgb(61, 61, 61);
    font-size: 18px;
    margin-left: 10%;
    margin-right: 10%;
    line-height: 175%;
    font-weight: bold;
    justify-content: left;
    text-align: left;

}

h5 {
    font-family: Arial, Helvetica, sans-serif;
	color: rgb(45, 73, 126);
    font-size: 16px;
    margin-left: 10%;
    margin-right: 10%;
    line-height: 175%;
    font-weight: bold;
    justify-content: left;
    text-align: left;

}

p, li{
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(61, 61, 61);
    font-size: 18px;
    margin-left: 10%;
    margin-right: 10%;
    line-height: 175%;
    font-weight: normal;
    justify-content: left;
    text-align: left;
}

a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

/* end of fonts + styles */

.buttons{
    grid-area: buttons;
    margin-left: 10%;
    margin-right: 0;
    margin-top: 10%;
}

.buttons > a{
    border: 2px solid #2ea3d9;
    color: #2ea3d9;
    border-radius: 15px;
    margin: 10px;
    padding: 5px 50px;
    background-color: #f8f9fa;
    text-decoration: none;
}

.buttons > a:hover{
    cursor: pointer;
    box-shadow: 0px 0px 10px silver;
}


/* resources section */

.resource_card{
    padding-top: 30px;
    padding-bottom: 30px;
    margin-left: 10%;
    margin-right: 10%;
    border: 1px solid rgb(228, 228, 228);
    box-shadow: 0.5px 0.5px 9px 2px #e0e7e7;
}

.container {
    overflow: hidden;
  }
  
  .filterDiv {

    float: left;
    background-color: #ffffff;
    color: #ffffff;
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
    margin: 2px;
    display: none; /* Hidden by default */
  }
  
  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }
  
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
  }
  
  /* Add a light grey background on mouse-over */
  .btn:hover {
    background-color: #ddd;
  }
  
  /* Add a dark background to the active button */
  .btn.active {
    background-color: rgb(22, 37, 121);
    color: white;
  }

  #myBtnContainer{
    margin-top: 40px;
    margin-bottom: 20px;
    margin-left: 10%;
    margin-right: 8%;

  }
