	
body {
    background-color: #FFCC66;
    background-repeat: repeat-x;
    background-attachment: fixed;
}

h1 {
  margin-top: 2px;
  color: #9bfc00;
  background-color: #FC9804;
  text-align: center;
  top: 5%;
}

h1 span {
    color: #ff0000;
}

p, td {
    color: blue;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

        
.slider {
    width: 700px;
    margin: 0 auto 20px;
    text-align: center;
  }
  
  .slider .photos {
    position: relative;
    height: 433px;

    display: flex;
    justify-content: center;
    align-items: center;
  }
  
footer {
  text-align: center;
  padding: 3px;
  background-color: peachpuff;
} 
 
footer p, a {
  margin-top: 8px;
  margin-bottom: 4px;
}

.slider .photos img {
    position: absolute;
    opacity: 0;
    transition: opacity 1s;

    height: 100%;
    width: auto;
  }
      
  .slider .photos img.visible {
    opacity: 1;
  }


.prev:before,
.next:before {
  color: #fff;
  font-size: 100px;
  position: absolute;
  top: 35%;
  cursor: pointer;
}

.prev:before {
  content: '<';
  left: 0;
}

.next:before {
  content: '>';
  right: 0;
}
    

 .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
  
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
  
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  } 

/* Navbar */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

 .tab {
  overflow: hidden;
  border: 1px solid rgb(236, 169, 43);
  background-color: #faa25b;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

.tab button:hover {
  background-color: #ffc7c7;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
} 