



body {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 10px;
}
header {
 background-color: black;
 width: 100%;
 height: 50px;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}
li  a {
    text-decoration: none;
    color: white;
    margin: 1rem;
    line-height: 3;
    font-size: 1rem;
}
li a:hover {
    color:greenyellow;
}
h1 {
    text-align: center;
    font-size: 4rem;
    text-shadow: 2px 2px 9px yellow;
    font-family: "Noto Sans Devanagari", sans-serif;
    max-width: 80%;
    margin: 0 auto ;
    word-wrap: break-word;
}
.sec1 {
    background-image: url(../img/monk.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}
footer {
    background-color: black;
    color: white;
    text-align: center;
    width: 100%;
    height: 30px;
    font-size: 1rem;
    position: fixed;
    bottom: 0;
    padding-top: .4rem;
}
@media (min-width: 800px) {
    h1 {
        font-size: 10rem;
    }
}