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

body {
  height: 100vh;
	background-image:url(https://images.pexels.com/photos/1585710/pexels-photo-1585710.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500);
  background-color: rgb(15, 62, 85);
  font-family: "Poppins", sans-serif;

}
.para{
font-size:35px;
text-align:center;
padding-top:60px;
color:white;
}
a,button {
  font-family: "Poppins", sans-serif;
}
.blogs{
  position:relative;
text-align:center;
margin: auto;
padding-top:30px;
}

.blogs ul {
  margin-top: 10px;
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 300px;
  background: white;
  left: 10px;
  list-style: none;
  border-radius: 5px;
  opacity: 0;
  float-right:10px;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.blogs li:hover {
  background-color: rgb(197, 173, 181);
}

.blogs a {
  color: black;
text-decoration: none;
}

.blogs button:focus + ul{
  opacity: 1;
  pointer-events: all;
  transform: translateY(10px);


