@import url('https://fonts.googleapis.com/css2?family=DynaPuff&display=swap');

*{
    padding: 0;
    margin: 0;
}


.header-view{
    background-image: url(https://wallpapercave.com/wp/wp6024504.jpg);
    /*url(https://wallpapercave.com/wp/wp6024504.jpg);
    */
    width: 100%;
    height: 80vh;
    background-size: cover;
    font-family: 'DynaPuff', cursive;
    color: #ffffff;
    border-radius: 0 0 125px 125px;
}
header h1{
color: rgb(254, 238, 238);
-webkit-text-stroke: 1px rgb(91, 91, 228);
}
header nav{
    display: flex;
    float: right;
    margin-top: -2.5em;    
}

nav li{
    list-style: none;
    padding: 10px;
}
nav li a{
    text-decoration: none;
    
}
.top-of-picture{
    position: absolute;
    left: 4em;
    top: 6em;
    font-size: 40px;
    font-weight: 900;
    -webkit-text-stroke: 1px rgb(250, 2, 2);
}
.contact-now{
    background-color: blue;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 125px;
    position: absolute;
    left: 12em;
    top: 26em;
    font-size: 20px;
}

a:hover{
    animation: forwards;
    transition: 1s;
    color: red;
    font-size: 30px;
}
.top-of-picture:hover{
    -webkit-text-stroke: 1px rgb(0, 255, 30);
    color: rgb(51, 0, 255);
    animation: dim-light;
    animation-duration: 10s;
    transition: 2s;
    transform: scale(1.2);
}
@keyframes dim-light {
    10%{color: rgb(10, 43, 252);}
    25%{color: rgb(243, 232, 232);}
    50%{color: rgb(10, 43, 252);}
    75%{color: rgb(243, 232, 232);}
    100%{color: rgb(51, 0, 255);}
}


.container{
    margin: 10em;
}

.document-1{
    display: flex;
    
}

.document-1 img{
    border-radius: 15px;
}

.document-1-text{
    display: block;
    padding-left: 4em;
}
.document-1-text p{
    padding-top: 2em;
    width: 700px;
    font-size: 22px;
}


/* DOC TWO FROM HERE*/

.document-2{
    display: flex;
    margin-top: 10em;
   
}

.document-2 img{
    border-radius: 15px;
}

.document-2-text{
    display: block;
    
}
.document-2-text p{
    padding-top: 2em;
    width: 700px;
    font-size: 22px;
}

footer{
    background-color: #000fff;
    height: 20vh;
}
.copyright-text{
    color: white;
    padding: 8em 2em 0;
}