* {
  box-sizing: border-box;
}

/* ------- Body ------- */
/* Style the body */
body {
  font-family: Arial;
  padding: 5px;
  background-color: white;
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ------- Header -------*/
/* Style the header */
.header {
  padding: 0px;
  text-align: center;
  background-color: #FF8888;
  border-radius: 5px 5px 0px 0px;
}
/* h1 tags in the header */
.header h1 {
  font-size: 50px;
  color: black;
}
/* h2 tags in the header */
.header h2 {
  font-size: 25px;
  color: black;
}

/* ------- Navigation -------*/
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
  border-radius: 0px 0px 5px 5px;
}
/* Style the top navigation bar text */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
/* Allows icons to be used in the nav bar (the dropdown arrow used) */
.topnav .icon {
  display: none;
}

/* ------- Footer -------*/
/* Style the footer */
.footer {
  padding: 15px;
  text-align: center;
  background-color: #E27D60;
  color: white;
  margin-top: 5px;
  border-radius: 5px
}
/* h2 tags in the footer */
.footer h2 {
  font-size: 20px;
  color: black;
}

/* ------- Dropdown ------- */
/* Style the dropdown box for the navigation bar */
.dropdown {
  float: left;
  overflow: hidden;
}
/* Style the top dropdown button for the navigation bar */
.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white; 
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
/* Style the boxes for the dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  /* Style the text and content in the dropdown */
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
/* Style what happens to the content in the dropdown box when hovered over */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* ------- Addition to the drop down for the navigation ------- */
/* Styles the ul tag */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}
/* Styles the li tag */
li {
  float: left;
}
/* Styles the ul and '.dropbtn' tag text */
li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
/* Styles the li and '.dropdown' when hovered over */
li a:hover, .dropdown:hover .dropbtn {
  background-color: #4D4D4D;
}
/* Styles the li dropdown (so it appears like a list) */
li.dropdown {
  display: inline-block;
}
/* Styles the dropdow content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
/* Styles the dropdow content text */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
/* Styles the dropdow content when hovered over */
.dropdown-content a:hover {
  background-color: #4D4D4D;
  color: white;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* ------- Columns ------- */
/* Create columns that float next to each other */
/* --- Left column --- */
.leftcolumn {   
  float: left;
  width: 75%;
  padding: 0px 0px 0px 0px;
}
/* p tags in the leftcolumn */
.leftcolumn p{
  font-size: 20px;
}
/* h2 tags in the leftcolumn */
.leftcolumn h2{
  font-size: 30px;
}
/* --- Right column --- */
.rightcolumn {
  float: left;
  width: 25%;
  padding: 0px 0px 0px 5px;
}
/* One Column (to take up the whole width) */
.column {   
  float: left;
  width: 100%;
  padding: 0px 0px 0px 0px;
}

/* ------- Cards ------- */
/* Add a card effect for articles */
.card {
  background-color: #E8A87C;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px
}
/* h2 tags in the 'cards' div */
.card h2{
  font-size: 28px;
}
/* h3 tags in the 'cards' div */
.card h3{
  font-size: 22px;
}
/* p tags in the 'cards' div */
.card p {
  font-size: 16px;
}
/* b tags in the 'cards' div */
.card b {
  font-size: 20px;
}
/* Styling hr tags */
hr{ 
  height: 1px;
  color: black;
  background-color: black;
  border: none;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* ------- Image Styling ------- */
/* Styling to the image tag */
img {
  max-width: 100%;
  max-height: 100
}
/* Makes the image completely square (250px by 250px) */
.square {
    height: 250px;
    width: 250px;
}
/* Makes a class for the image to center (used for the logo) */
.img-container {
  text-align: center;
}
/* Makes the image float to the left and stay in place so that text goes to the right of it */
.img-float {
    float: left;
    position: relative;
}

/* ------- Table Styling ------- */
/* Border for the table on the 'fees.php' page */
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

/* ------- Hamburger navigation bar -------*/
/* Makes the navigation bar repsonsive when the screen is big enough */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
    height: 53px;
  }
}
/* Makes the navigation bar turn into a hamburger menu when the screen is not big enough (this is to be fully responsive and look good) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* ------- Website Responsiveness -------*/
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}