/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: rgb(36, 71, 41);
  color: black;
  font-family: Verdana;
}
div {
   width:80vw;
   height:80vh;
}

#img{                       
  max-width:100%;
  height:auto;
  max-height:100%;
}

#yes{
  font-size: 200%;
  position: absolute;
  text-align: right;  
      
      font-family: futura;
      font-style: italic;
      
      width:100%;
      
      margin: 0 auto;
      
      color:#313131;
      font-weight: bold;
      -webkit-animation:colorchange 20s infinite alternate;
      
      
    }

    @-webkit-keyframes colorchange {
      0% {
        
        color: blue;
      }
      
      10% {
        
        color: #8e44ad;
      }
      
      20% {
        
        color: #1abc9c;
      }
      
      30% {
        
        color: #d35400;
      }
      
      40% {
        
        color: blue;
      }
      
      50% {
        
        color: #34495e;
      }
      
      60% {
        
        color: blue;
      }
      
      70% {
        
        color: #2980b9;
      }
      80% {
     
        color: #f1c40f;
      }
      
      90% {
     
        color: #2980b9;
      }
      
      100% {
        
        color: pink;
      }
    }

#yesdiv {
  position: relative;
  width: auto;
}

#merge {
  position: absolute;
  max-width:100%;
  height:auto;
  max-height:100%;
  z-index: -1;
}














