#wrapper {
    width: 80%;
    margin:auto;
}

.header {
    padding: 40px;
    text-align: left;
    margin:0 ;
    font-size: 5em;
}

nav {
    z-index: 1;
    text-align: left;
    padding: 10pt;
    font-size: 1.25em;
}

.likes {
    width: 50%;
    float: left;
    padding: 1em;
    margin: 0%;
    padding: 0;
}

.dislikes {
    width: 50%;
    float: left;
    margin: 0%;
    padding: 0;
}

.footer {
    clear: both;
    padding: 10pt;  
    }
h1{
    font-size: 10vw;
}
h2{
    font-size: 5vw;
}
h3{
    font-size: 3vw;
}
.footer {
    clear: both;
    margin:20px;  
    }
/* The animation code */
@keyframes example {
    0%   {background-color: red;}
    25%  {background-color: yellow;}
    50%  {background-color: blue;}
    100% {background-color: green;}
  }
  
  /* The element to apply the animation to */
  h2 {
    width: 350px;
    height: 100px;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }
h2:hover {
    font-size: 2em;
    transition: ease-in-out 0.5s;


}


