body {background-color: wheat;}

h1 {
    text-align: center;
    /* color: plum; */
    font-family: "Courier New", monospace;
}

h2 {
    text-align: center;
    font-family: "Courier New", monospace;
}

h3 {
    text-align: center; 
    font-family: "Courier New", monospace;
}

p {
    text-align: center; 
    font-family: "Courier New", monospace;
}


.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: 300px;
}

.img1 {
    position: absolute;
    left:0;
    right:0;
    margin:auto;
    z-index: 20;
    /* width: 80%; */
    
}

.img2 {
    position: absolute;
    left:0;
    right:0;
    margin:auto;
    z-index: 10;
}
.container {
    position: relative;
}

.wiggle:hover {
    animation: wiggle 1.5s infinite;
  }

@keyframes wiggle {
    0% { transform: rotate(0deg); }
   80% { transform: rotate(0deg); }
   85% { transform: rotate(5deg); }
   95% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}