*{
    margin: 0;
    padding: 0;
    font-family: 'Dancing Script'cursive;
}

.forp{
    font-family:'Great Vibes', cursive; ;
}

body, html {
    height: 100%;
    margin-bottom:0;
    
    
  }

.container{
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(53,82,66,0.5), rgba(47,80,63,0.6)),
    url(image/DSC_0041.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    animation-name: transition;
    animation-duration: 1s;
    
}

.banner{
    width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    margin-top: 10px;
}

.banner h1{
    font-size: 100px;
    color: #fff;
    font-weight: 450px ;
    margin-bottom: 25px;
    letter-spacing: 2px;
    animation-name: movetoright;
    animation-duration: 3s;
}

.banner p{
    font-size: 60px ;
    font-weight: 150px ;
    margin-bottom: 20px;
    color: #fff;
    animation-name: movetoleft;
    animation-duration: 3s;

}

.banner span{
    font-size: 100px ;
    font-weight: 450;
    color: #E4CC1F;

}

.banner a{
   width: 100px;
    display: inline-block;
    padding: 12px;
    margin: 20px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 18px;
    outline: none;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn{
    background-color: transparent;
    color: #fff;
    animation-name: movetoleft;
    animation-duration: 3s;
    animation-delay: 1s;
    animation-fill-mode: backwards;
}

.btn:hover{
    background-color: rgba(236, 209, 8, 1.0);
    opacity: 1.0;
    
}

@keyframes movetoright{
    0%{
        transform: translateX(-120px);
        opacity: 0;
    }

    100%{
        
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes movetoleft{
    0%{
        transform: translateX(120px);
        opacity: 0;
    }

    100%{
        
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes btn{
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}
@keyframes transition{
    0%{
        opacity: 0;
        transform: rotateX(-20deg);
    }
    
    100%{
        opacity: 1;
        transform: rotateX(0deg);
    }
}