html { 
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%;
}
body {
    background-image:url(images/beautiful-white-bunch-flowers-green-grass-background.png);
    background-repeat: no-repeat;
    background-size:cover;
    height: 100%;
}

.center {
	position:relative;
    margin: 0 auto;
    text-align: center;
}
.rabbit{
    position:absolute;
    animation: movement_rabbit 30s forwards;
}
.rabbit img{
    width:300px;
    height:400px;
    height:20%
}
@keyframes movement_rabbit {
    from {
	top: 10%;
	right: 100%;
    }
    35%
    {
    top:50%;
    }

    to {
	top: 10%;
	right: -40%;
    }	
}
.nadp{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    top:25%;
    left:36%;
    animation: word 15s forwards;
    animation-delay:3s;
    visibility: hidden;
}
.nadp h1{
   
    font-size: 160px;
    font-family: 'Ribeye Marrow', cursive;
}
@keyframes word{
    0%{
        opacity: 0.0;
        visibility:visible;
    }
    100%{
        opacity: 1;
        color:rgb(255, 226, 146);
        visibility:visible;
    }
}

@media screen and (max-width: 768px) { 
  .nadp h1{
    font-size: 100px;
}
}