html {
  scroll-behavior: smooth;
}
ul {
  list-style-type: none;
}
button {
  cursor: pointer;
  font-size: 16px;
  font-family: "Lucida Console", "Courier New", monospace;
  color: palevioletred;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  transition-duration: 0.4s;
}

button:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transform: scale(1.1, 1.1);
}

button:active {
  background-color: pink;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
header#mainHeader h1#culture {
  display: block;
}

header#mainHeader h1#hate {
  display: none;
}

header#mainHeader h1#nohate {
  display: none;
}
header#mainHeader:hover h1#nohate {
  display: none;
}
button#back {
  font-size: 7vw;
}
dd#reduced {
  font-size: x-small;
}
dd#cursive {
  font-family: "Brush Script MT", "Lucida Handwriting";
  font-size: x-large;
}
dd#branded {
  font-family: "Arial Black";
}
dd#untouchable:hover {
  display: none;
}
dd#pressured {
  color: darkgrey;
  font-size: x-large;
  line-height: 0.001;
}
dd#shadow {
  color: white;
  text-shadow: 2px 2px 4px #000000;
}
dd#shake {
  animation: 0.8s shake infinite alternate;
}
@keyframes shake {
  0% {
    transform: skewX(-15deg);
  }
  5% {
    transform: skewX(15deg);
  }
  10% {
    transform: skewX(-15deg);
  }
  15% {
    transform: skewX(15deg);
  }
  20% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}

body {
  font-family: "Lucida Console", "Courier New", "monospace";
  font-size: 16px;
  line-height: 1.6em;
  margin: 0;
}
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  opacity: 1;
}

#mainHeader {
  background: #333;
  color: white;
}
#mainNav {
  background: #ccc;
  color: black;
}
#mainNav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#mainNav li {
  display: inline;
  padding: 5px 10px;
}
#mainNav a {
  color: black;
  text-decoration: none;
  font-size: 18px;
}
#main Nav li:hover {
  background: #aaa;
}
p {
  padding: 10px 20px;
}
#stanza1 {
  color: 333;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  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;
}
