
.custom-header {
    position: relative;
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.header-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    z-index: 10;
    position: relative;
}

.svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

svg {
    width: 100%;
    height: auto;
}


.post-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.post-title {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 20px;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
}


.custom-btn {
    background-color: #0099ff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    color: white;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #007acc;
}


body {
    background-color: #f0f2f5;
    font-family: 'Arial', sans-serif;
    color: #333333;
}

.container {
    max-width: 900px;
    margin: auto;
}

img.img-fluid {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
