html { 
    overflow-x: hidden;
    overflow-y: hidden;
}
body {
    background-image:url(images/1.jpg);
    background-repeat: no-repeat;
    background-size:cover;
}

.center {
	position:relative;
    margin: 0 auto;
    text-align: center;
}
.santa{
    position:absolute;
    width:30%;
    height:40%;
    animation: movement_santa 30s forwards;
}
.santa img{
    height:20%
}
@keyframes movement_santa {
    from {
	top: 10%;
	left: 100%;
    }
    35%{
        height:80%;
        top:70%;
    }

    to {
	top: 10%;
	left: -40%;
    }	
}
.nadp{
    position:absolute;
    top:25%;
    left:36%;
    animation: word 15s forwards;
    animation-delay:5s;
    visibility: hidden;
}
.nadp h1{
    font-size: 60px;
    font-family: 'Ribeye Marrow', cursive;
}
@keyframes word{
    0%{
        opacity: 0.0;
        visibility:visible;
    }
    100%{
        opacity: 1;
        color:red;
        visibility:visible;
    }
}