/* 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." */

body {
  margin: 0;
	padding:0;
  background-color: white;
  color: black;
  font-family: Verdana;
  width: 100%;
	display: table;
}

  #menu_selection {
   list-style-type: none;
  margin: 0;
  padding: 0;
  width: 800px;
    overflow: hidden;
  background-color: rgb(241, 107, 107);
  border-radius: 20px;
 }
 
 #menu_selection li {
  float: left;
 }
 
 #menu_selection li a {
     display: block;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
 }
 
 #menu_selection li a:hover {
  background-color: black;
  border-radius: 20px;
 }
 
 #tab1 #tab2 #tab3 {
   border-radius: 25px;
  border: 4px solid black;
  padding: 25px;
  width: 100px;
  height: 50px;
 }
 
#fact_header {
 background-image: url('leafcloseup.jpg');
 border: solid;
 border-color: green;
 margin: 10px;
 color: white;
 font-family: Cubic;
 font-size: 20px;
 text-shadow: 4px 4px rgb(23, 26, 24);
}
  
.back {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 80px;
  overflow: hidden;
	background-color: rgb(182, 253, 182);
	 border-radius: 20px;
}

.back li {
  float: left;
}
.back li a {
    display: block;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px 16px;
  width: 40px;
  text-decoration: none;
}
.back li a:hover {
   background-color: black;
   width: 80px;
  border-radius: 20px;
  
}

@font-face {
    font-family: "Karina";
    src: url("./fonts/Karina.ttf");
    format:("ttf");
}
@font-face {
  font-family: "Cubic";
  src: url("./fonts/cubic.ttf");
  format:("ttf");
}
@font-face {
  font-family: "Lemon Milk";
    src: url("./fonts/LEMONMILK-Regular.otf");
    format:("otf");
}
  @font-face {
   font-family: "JMH Typewriter";
  src: url("./fonts/JMH Typewriter.otf");
  format:("otf");
  }
  
