@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap');
body {
   font-family: 'Poppins';
}


form {
    width: 50%;
    border: 2px solid black;
    margin: 20px 20%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],input[type="password"] {
    width: 50%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 30%;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid black;
    padding: 10px;
}

th {
    background-color: #f2f2f2;
}
table  img{
    width: 200px;
    height: 100px;
}
/* Style for blog blogs-box-section */
.blogs-box-section{
    width: 100%;
    height: 50ox;
    justify-content: space-evenly;
    padding: 100px 0;
    display: flex;
    flex-wrap: wrap;
}
.blogs-box-section a{
    text-decoration: none;
}
.blogs-box-section a:hover{
    text-decoration: underline;
}
.blog-card{
    width:30%;
    margin: 20px 0;
    border: 1px solid black;
    border-radius: 20px;
    overflow: hidden;
}
.blog-card img {
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0 0;
    transition: transform 0.1s ease; 
    
}

.blog-card img:hover {
    transform: scale(1.1); /* Scale the image slightly on hover */
}
.blog-card span img{
            width: 50px;
            height: 50px;
            border-radius: 50%;
} 

.blog-card-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}
.blog-card h1{
    padding-left: 20px;
    font-size: 25px;
	padding-top: 10px;
    color: blue;
	font-family: "Ubuntu", sans-serif;
  	font-style: normal;
}
.blog-card p{
    padding: 0 20px; 
    text-align: justify;   
}
.blog-card hr{
    border: none;
    height: 2px;
    background-color: black;
    margin: 10px 30px;
}
.blog-card h3{
    font-family: "Ubuntu", sans-serif;
  	font-weight: 600;
  	font-style: normal;
}
.blog-card span{
    padding: 5px;
    /* background-color: rgb(79, 79, 212); */
   /
}
.blog-post-details h3{
    display: flex;
    align-items: center;
}
.edit{
    background-color: green;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}
.blog-card-inner a{
    border: 1px solid white;
    background-color: blue;
    color: white;
    margin: 20px;
    padding: 10px 20px;
    text-decoration: none;
}
.blog-card-inner a:hover{
    border: 1px solid blue;
    background-color: white;
    color: blue;
    font-weight: 600;
}

.pagination{
    display: flex;
    justify-content: center;
}
.pagination a {
    border: 1px solid white;
    background-color: blue;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    margin-left: 5px;
}

.blog-post h1{
	font-size:40px;
	padding:2% 0;
}
.blog-post h2,.blog-post h3,.blog-post h4,.blog-post ul li,.blog-post ol li{
	padding:1% 0;
}
.blog-post h2{
	font-size:30px;
	font-weight: 700;
}
.blog-post h3{
	font-size:25px;
}

.blog-post p{
	font-size:18px;
	word-spacing:2px;
}
.logo{
	display:flex;
	justify-content: center;
	align-items: center;
}