 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

 body {
   font-family: 'Poppins', sans-serif;

 }

 .comtainer {
   display: flex;
   justify-content: center;
   align-items: center;
   height : 100vh;
 }

 .image {
   background-image: url('pexels-pixabay-460775.jpg');
   background-size: cover;
   background-position: center;
   filter: blur(100px);
   width: 100%;
   height: 100%;
   position: absolute;
   z-index: -1;
   position: relative;
 }

 .headline {
   text-align: center;
   position: absolute;
   top : 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   color: white;
   z-index: 1;
 }

 .headline h1 {
   margin: 20px 0px;
 }

 .headline h3 {
   margin: 20px 0px;
   font-size: 6rem;;
 }

 button {
   margin-top: 30px;
   padding: 10px 20px;
   background-color: #3498db;
   color: white;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   font-size: 1.2rem;
 } 