@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins;
}
.content
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-image: url(img/Download\ Vector\ Landscape\ Illustration\ for\ free.jpg);
    background-size: cover;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.content:before{
    content: '';
    background: inherit;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
}
.content{
    line-height: 50px;
    color: rgb(255, 255, 255);
    text-shadow: 0 5px 6px rgba(0,0,0,0.4);
}


.content h1{
    font-size: 2.4em;
}

.content h2{
    font-size: 1.4em;
}