html {
  background: orange;
}

      p { /*paragraph*/
    font-size: 40px;
    font-family: monospace;
      }

      p1 { /*?????*/
        font-family: "indie flower";
      }

      h1 { /*header fonts*/
         font-size: 60px;
         text-align:center;
         font-family: monospace;
      }

      h2, h3, h4 { /*header fonts*/
        font-family: monospace;
     }

      #centre_text 
      {  /*centre_text is centre text*/
        text-align: center;
        word-spacing: 4em;
      }

      
      a { /*link fonts*/
      font-size: 40px;
      font-family: monospace;

      }   

      a:visited {
        color: green;
      }
      a:hover {
        color: green;
        font-family: "Courier New", "Lucida Console" , monospace;
      }
      a:active {
        color: blueviolet;
      }

      .details { /*wrap in div*/
        width: 60%;
        background-color: rgb(255, 174, 23);
        margin: 0 auto;
        box-shadow: 20px 20px 20px rgb(123, 81, 3);
      }

      hr { /*spacer bar*/
        color: orange; /*outline*/
        background-color: rgb(246, 181, 61); /*inside*/
        width:70%;
        height:5px;
      }

      /* Add a background color to the top navigation */
.topnav {
  background-color: rgba(255, 187, 0, 0.884);
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #c800ff;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #c800ff;
  color: white;
}

.footer {
   position: static;
   bottom: 0;
   width: 100%;
   background-color: black;
   color: gray;
   text-align: center;
   max-height: none;
   min-height: 10vh;
}



/* Accordion for band page */
.accordion {
  background-color: rgba(255, 187, 0, 0.884);
  color: black;
  cursor: cell;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #c800ff;
}

.accordion:after { /* Icons on accordian +/- */
  content: '\01F49C';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active2:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: rgb(228, 71, 181);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/*This is for an overlay image*/

* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.container {
  position: relative;
  width: 50%;
  max-width: 300px;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  font-family: monospace;
  padding: 20px;
  text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.container:hover .overlay {
  opacity: 1;
}

.ribbon { /*NEW! ribbon!*/
  width: 40px;
  font-size: 14px;
  padding: 1px;
  position: absolute;
  text-align: center;
  border-radius: 25px;
  transform: rotate(-11deg);
  background-color: #ff00c3;
  color: white;
}

/*Image link gallery*/
.cats {
   width: 30%;
   padding: 20px;
  display: inline-block;
}


div.gallery img {
  width: 100%;
  height: auto;
}

.dogs{ 
  text-align: center;
}