/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #e2e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Header styles */
.header-container {
    width: 80%; /* Smaller width */
    max-width: 800px; /* Maximum width */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blurry effect */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 20px 0; /* Vertical margin */
    padding: 10px 20px; /* Padding inside the container */
    text-align: center; /* Center align text */
}

/* Navigation styles */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    height: 50px; /* Adjust the height as needed */
    margin-right: 20px; /* Space between logo and nav links */
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #007BFF;
}

/* Post card styling */
.post-card {
    background-color: #fcfafa;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    width: 900px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #188897;
    text-align: center;
}

.post-card p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 17px;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.footer-container {
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px 0;
    bottom: 0;
    left: 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-left {
    font-size: 14px;
  }
  
  .footer-right {
    display: flex;
    gap: 10px;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
  }

/* Tablet */
@media (max-width: 768px) {
 

    .post-card {
        width: 80%;
        padding: 15px;
    }

    .post-card h1 {
        font-size: 24px;
        color: #188897;
    text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
   

    .post-card {
        width: 95%;
        padding: 10px;
    }

    .post-card h1 {
        font-size: 20px;
        color: #188897;
    text-align: center;
    }
}
