@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arizonia&display=swap');

* {
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.projectName {
  font-family: 'Arizonia', cursive;
}
.center{
  display: block;
  margin-left: auto;
  margin-right: auto;
 
}
.image1{
  margin-left: 70px;
  /* margin-right: 100px; */
}



.previous {
  background-color: #f1f1f1;
  color: black;
}

.next {
  background-color: #04AA6D;
  color: white;
}

.round {
  border-radius: 50%;
}


.blogContentDetails {
  align-items: center;

}

/*From line 13 to 29 is the code contributed to style the scrollbar*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgb(7, 31, 48);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, #09a0f1);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, antiquewhite);

}


/* Media Queries */

@media (max-width: 1250px) {
  .karma_image{
    object-fit: contain;
  }
}