.shows {
  display: block;
  position: relative;
  font-family: "homemadeapple";
  font-size: 1em;
  font-style: normal;
  line-height: 1.6;
  text-align: left;
  width: 75%;
  height: 75%;
  max-width: 400px;
  max-height: 400px;
  padding: 1.5em 2em;
  margin: 2em 0;
  color: #000;
  background-image: url("https://joseywails.neocities.org/assets/paper-b.png");
  background-size: cover;
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.75);
  z-index: 4;
  opacity: 0.96;
  
  animation-name: breeze;
  animation-duration: 4s; 
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shows:div {
  display: block;
  position: relative;
  z-index: 5;
  opacity: 0.9;
}

.label {
  color: black;
  font-family: "homemadeapple";
  text-decoration: underline;
  text-align: left;
  font-size: 1.2em;
  position: relative;
  align-items: baseline;
  margin-top: -10px;
  padding: 2px;
  opacity: 0.9;
}

.peek a:link {
  color: #000;
  font-weight: normal;
  text-shadow: 0px;
}

.peek a:hover {
  text-decoration: none;
}

.peek a:visited {
  color: #000;
  font-weight: normal;
}

.rotate {
  text-align: center;
  font-family: "homemadeapple";
  color: maroon;
  padding: 20px;
  font-size: 3em;
  text-wrap: wrap;
  transform: rotate(-28deg);
  -webkit-transform: rotate(-28deg);
  -moz-transform: rotate(-28deg);
  -ms-transform: rotate(-28deg);
  -o-transform: rotate(-28deg);
}

.circle-marker {
  display: inline-block; 
  border: 2px solid maroon; 
  border-radius: 50%; 
  padding: 5px 10px; 
  line-height: 1;
  text-align: center;
}

.peek-container {
  max-width: 800px;
  width: 100%;
  text-align: left;
}

.peek {
  background-image: url("https://joseywails.neocities.org/assets/paper-b.png");
  background-size: cover;
  display: block;
  position: relative;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.2em;
  font-style: normal;
  color: #000;
  line-height: 1.6;
  text-align: left;
  width: 300px;
  height: 300px;
  top: 0;
  right: 0;
  margin: 2em 0;
  margin-top: -15px;
  margin-bottom: -280px;
  margin-right: -45px;
  padding: 1.5em 1em;
  opacity: 0.87;
  transition: margin-bottom 1s ease;
  transition: transform 1s ease;
    transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);
   z-index: 4;
  
}

@keyframes breeze {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-2px) rotate(0.5deg) scale(1.01);
  }
  50% {
    transform: translateY(0) rotate(-0.5deg) scale(1);
  }
  75% {
    transform: translateY(2px) rotate(0.2deg) scale(1.01);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

.peek:hover {
 margin-bottom: -270px; 
 cursor: pointer;
   transform: rotate(6deg);
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -ms-transform: rotate(6deg);
  -o-transform: rotate(6deg);
  transition: margin-bottom 1s ease;
  transition: transform 1s ease;
  animation-play-state: paused;
}