body {
    background-color: #FFAFC2;
}

img {
    max-width: 500px;
    height: auto;
    position: absolute;
    margin-left: 600px;
    margin-top: 150px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #FFF8B2;
  position: absolute;
  margin-left: 680px;
  margin-top: 180px;
  text-align: center;
  font-family: "Kalam", cursive;
}

.cloud {
  font-family: 'Coco Bubble', 'sans-serif';
  font-size: 100px;
  text-align: center;
  content: '';
  opacity: 1;
  position: absolute;
  top: 25px;
  left: 175px;
  color: #FFF8B2;
  animation: float 2.5s infinite ;
}




@keyframes float{
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }
}
