@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300|Special+Elite|Londrina+Sketch&display=swap');


body, html
{margin: 0 auto;
font-family: 'IBM Plex Sans', sans-serif;
height:100%}

h1
{
  font-family: 'Londrina Sketch', cursive;
  font-size: 4rem;
  margin: 0px 5px 0px 5px;
  text-align: center;
  
}

h2
{
  font-family: 'Special Elite', cursive;
    font-size: 2rem;
    text-align: center;
}

/* Container coding */
.container
{
display:flex;
flex-flow: row wrap;
margin: 0;
    top:0;
position: relative;
}

.card
{
  display: flex;
  width: 250px;
  flex-grow:  1;
  flex-direction: column;
  margin: 10px;
    top:0;
    position: relative;
  border-radius: 15px 15px 0px 0px;
  border: solid 1px #000;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contacts
{
  border: none;    
  margin: 15px 15px 15px 15px;
  text-align: center;
  line-height: 1.8rem;
  
  
}



.card .content
{
  flex-grow: 1;
  background-color: #dedede;
  padding: 0px 10px 0px 10px;
  border-radius: 15px 15px 0px 0px;
}

.card .content h2
{
    font-size: 2rem;
  font-family: 'Special Elite', cursive;
    text-align: left;
}
    


.rightIcon
{
  color: #9E4439;
  
}

div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-image: url('row_of_pencils_800x76.jpg');
  background-repeat: repeat;
  height: 76px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}


/*Dropdown bit */

.collapsible {
  background-color: rgba(255, 165, 0, 0.88);
  color: black;
  cursor: pointer;
  padding: 8px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

.collapsible:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px; 

}

.active:after {
  content: "\2212";
}

.info {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: rgba(80, 80, 80, 0.85);
  color: white;
}

