Popup with blurred background

by Pritam Bohra

HTML

<div class="container">
  <div class="content">
     <h2>Lorem ipsum dolor sit amet.</h2>
    <img src="https://picsum.photos/900/400" alt="">
    <a href="#">Read More</a>
  </div>  
</div>

CSS

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  width: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content img {
  display: block;
  max-width: 100%;
}
.content a {
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #111;
  color: #fff;
}