body{margin:40px
auto;max-width:650px;line-height:1.6;font-size:18px;color:#444;padding:0
10px}h1,h2,h3{line-height:1.2}


/* makes text rainbowbarfed when rainbowAni is invoked */

.rainbowAni {
    animation: rainbow-color-change 3s linear infinite alternate;
}

@keyframes rainbow-color-change {
    0%, 100% { color: #ff0000; } /* Red */
    14% { color: #ff8b00; } /* Orange */
    28% { color: #e8ff00; } /* Yellow */
    42% { color: #5dff00; } /* Green */
    56% { color: #00b9ff; } /* Blue */
    70% { color: #5d00ff; } /* Indigo */
    84% { color: #e800ff; } /* Violet */
}



/* .responsive scales center images to better fit mobile*/

.responsive {
    width: 100%;
    max-width: 650px;
    height: auto;
}

/* STOLEN CRAP FROM W3C TUTORIALS
 * HANDLES TOP NAVBAR */

/* Add a black background color to the top navigation */
.topnav {
  background-color: #444;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* WEBRING NAVBAR */

.nav {
  background-color: AliceBlue;
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
  max-width: 650px;
}

.nav li {
  display: inline-block;
  font-size: 18px;
  padding: 20px;
}


/* SHIT FOR SCROLL-TO-TOP BUTTON */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}



