
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    background-color: #043c57;
    color: #ccdce3;
    padding: 50px 0;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.logo-container h2 {
    margin-left: 10px;
    float: left;
}

.search-form {
    margin-top: 20px;
}

.search-bar {
    width: 300px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.search-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #000000;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 20px;
    color: #fff;
    font-weight: bold;
}

.search-button:hover {
    background-color: #031568;
}

main {
    flex-grow: 1;
}

#content-post-container p {
    text-align: center;
    color: gray;
}

.content-post {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 3%;
}

.post-title {
    margin-bottom: 5px;
    color: gray;
}

footer {
    text-align: center;
    font-size: 1rem;
    color: #999;
    margin-bottom: 10px;
}

.social-icons img {
    height: 30px;
    margin: 0 10px;
}

.made-by {
    margin-top: 10px;
}

.made-by a {
    color: #999;
    text-decoration: underline;
}

.LinkOnline{
    color: #ccdce3;
    display:flex;
    justify-content:end;
    font-size:13px;
    margin-right:5%
}
