/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: 'heart_warmingregular';
    src: url('heart_warming-webfont.woff2') format('woff2'),
         url('heart_warming-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #ffffff;
     font-size: 15px;
     color: black;
     font-family: Verdana;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #00a4d2 #e4f0f7;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #e4f0f7;
}

*::-webkit-scrollbar-thumb {
  background-color: #00a4d2;
  border-radius: 20px;
  border: 3px solid #e4f0f7;
}

	h1 {
  font-size: 80px;
  color: #54729c;
  line-height: .2;
  font-family: 'heart_warmingregular';
  font-weight: normal;
  font-style: normal;
  }
  
  h2 {
  font-size: 30px;
  color: #54729c;
  line-height: .2;
  font-family: 'heart_warmingregular';
  font-weight: normal;
  font-style: normal;
  }
  
    h3 {
  font-size: 18px;
  font-family: 'heart_warmingregular';
  font-weight: normal;
  font-style: normal;
  }

/* unvisited link */
a:link {
  color: #54729c;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #54729c;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #73ded5;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: #54729c;
  text-decoration: none;
}


#tree {
	float: left;
	position: fixed;
	left: 10px;
	bottom: 10px;
	overflow: hidden;
	width: 250px;
}

a.button{
 display:inline-block;
 padding:0.3em 1.2em;
 margin:0 0.1em 0.1em 0;
 border:0.16em solid rgba(255,255,255,0);
 border-radius:2em;
 box-sizing: border-box;
 text-decoration:none;
 font-family: 'monadregular';
 width: 90%;
 font-weight:300;
 color:#FFFFFF;
 text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
 text-align:center;
 transition: all 0.2s;
}

a.buttontop{
 display:inline-block;
 padding:0.3em 1.2em;
 margin:0 0.1em 0.1em 0;
 border:0.16em solid rgba(255,255,255,0);
 border-radius:2em;
 box-sizing: border-box;
 text-decoration:none;
 font-family: 'monadregular';
 font-weight:300;
 color:#FFFFFF;
 text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
 text-align:center;
 transition: all 0.2s;
}

a.button:hover{
 border-color: rgba(255,255,255,1);
}
@media all and (max-width:30em){
 a.button{
 display:block;
 margin:0.2em auto;
 }
} 

a.buttontop:hover{
 border-color: rgba(255,255,255,1);
}
@media all and (max-width:30em){
 a.buttontop{
 display:block;
 margin:0.2em auto;
 }
} 

#blank {
	height: 100px;
	overflow: auto;
}


#title {
  text-align: center;
  font-size: 60px;
  color: white;
  font-family: 'monadregular';
  font-weight: normal;
  font-style: normal;
  }

@media only screen and (min-width: 800px) {

#menuToggle
{
  display: none !important;
  }

#hidepc {
    display: none !important;
  }  

}  


/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  background-color: white;
}