@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
  
  
html{
	scroll-behavior: smooth;
}
body{
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
	scroll-behavior: smooth;
}
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.blogpage-intro{
    margin-top: 2rem;
	position: relative;
	max-width: 100vw; 
	 
}
.cover{
    display: flex;
   align-items: center;
   justify-content: center;
    width: 100%; 
	height: auto;
   
    
	
	
	
	
}   


.cover img{
    max-width: 100%;
}





.blog-details h1{
    font-size: 24px;
}



 .blog-details{
    padding: 5rem;
 }


 .bullet {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: darkslategrey;
  }
  
  .bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border: 2px solid rgb(104, 151, 38);
    background-color: rgb(104, 151, 38);
  }

  
  @media (max-width: 520px){
   
    .blog-details{
        padding: 2rem;
     }
  }




