@charset "utf-8";

.blog-content {
   border: solid thin transparent;
   min-height: 500px;
   width: 85%;
   margin: 0px auto;
}

.blogpost-container {
    max-width: 90%;
    margin: 52px auto 10px auto;
    background: #f8fbff;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 62, 128, 0.1);
    border-radius: 8px;
}
  
.header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3a86ff;
}

.header h1 {
    color: #1e56a0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    position: static;
}

.post {
    margin-bottom: 50px;
    padding: 15px;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.post-title {
    font-size: 1.8em;
    margin: 19px auto;
    text-align: center;
    color: #163172;
    font-family: 'Georgia', serif;
    font-weight: 600;
}

.post-date {
    color: #5e81ac;
    font-size: 0.9em;
    margin-bottom: 20px;
    text-align: center;
}

.post-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333f4d;
}

.post-content h2 {
    color: #1e5f74;
    border-bottom: 1px solid #d0e8f2;
    padding-bottom: 8px;
}
  
.post-content h3 {
    color: #3a7ca5;
    margin-top: 25px;
} 

/* Styles for small devices */
@media (max-width: 767px) {
    .blog-content {
        width: 95%;
    }
    
    .blogpost-container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
}
 
  
  
  
  