/* general styles */
body {
    color: #ffffff !important;
    background-color: #000000 !important;
    font-size: 18px !important;
    font-family: 'Inconsolata', monospace !important;
    text-align: center !important;
}
h2, .copyright {
    /* font-size: 150% !important; */
    margin-top: 20px !important; /* Adjust the value as needed */
    margin-bottom: 20px !important; /* Adjust the value as needed */
}
.no-underline {
    text-decoration: none !important;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: 50%;
}

/* themes */ 
.white-fg {
    color: #ffffff !important;
}
.gray-fg {
    color: #6c757d !important;
}
.black-bg {
    background-color: #000000 !important;
}
.dark-bg {
    background-color: #000000 !important;
}
.dark-bg:hover {
    background-color: #002b33 !important;
}
.clear-bg {
    background-color: #00000000 !important;
    opacity: 1 !important;
}

/* cards */
.card-link {
    color: #00FFFF !important;
}
.card-header {
    background-color: #000000 !important;
    text-align: left;
    /* border-bottom: 1px solid #fff !important; */
}
.card-body {
    background-color: #000000 !important;
    border: 1px solid #ffffff;
}
.card-footer {
    border: 1px solid #ffffff;
}
.card {
    margin-bottom: 20px !important;
}
.crop {
    width: 100%;
    /* max-height: 195.75px; */
    max-height: 200px;
    overflow: hidden;
}

/* navbar */
.navbar-dark, .navbar-nav, .nav-link {
    color: #ffffff !important;
    background-color: #000000 !important;
}
.nav-link:hover {
    color: #00ffff !important;
}
.navbar-nav {
    color #ffffff !important;
    background-color: #000000 !important;
    font-size: 18px !important;
    font-family: 'Inconsolata', monospace !important;
    text-align: center;
}

/* font awesome */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 80px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.fa:hover {
    /* background: #ffffff; */
    color: #ffffff;
    background: #002b33;
    text-decoration: none;
}

/* Original CSS for blog posts */
.blog-body {
    /* font-family: Arial, sans-serif; */
    margin: 20px;
    background-color: #000000;
    color: #fff;
}
.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.blog-card {
    width: 300px;
    margin: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #242424;
    color: #fff;
}
.blog-card h2 {
    margin-top: 0;
}
.blog-card p {
    color: #ccc;
    word-wrap: break-word;
}
.blog-card img {
    max-width: 100%;
    height: 200px; /* Set a fixed height for square images */
    object-fit: cover; /* Crop the image while maintaining its aspect ratio */
    border: 1px solid #fff; /* 1-pixel white border */
    border-radius: 5px;
    margin-top: 10px;
}

/* modals */
.modal-body, .modal-header, .modal-footer {
    background-color: #002b33;
}

/* pagination */

