body{
    margin: 0;
    background-color: pink;
}

.start{
    animation: move 15s infinite;
}

.game{
    position:relative;
}

@keyframes move{
    10%{
       transform: translate(100px,100px);
    }
    30%{
        transform: translate(800px,500px);
    }
    60%{
        transform: translate(1300px,100px);
    }
    80%{
        transform: translate(-100px,800px);
    }
}

.instruction{
    font-size: 28px;
    color: yellow;
    font-family: "Courier New", monospace;
    text-align: center;
    margin-top: 20px;
}

@keyframes float {
  0%{ 
    transform: translateY(0px);
    font-variant: small-caps;
    font-weight: bold;
    background-color: pink;
 }
 30%{
    background-color: rgb(238, 211, 161);
 }
  50%{ 
    transform: translateY(-15px); 
    font-size: 30px;
    background-color: rgb(255, 247, 0);
}
  70%{
    background-color: rgb(156, 233, 207);
  }
  100%
  { 
    transform: translateY(0px);
    background-color: white;
}
}

.more{
    font-family: fantasy;
    animation: float 5s ease-in-out infinite;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}