* {
    font-family: Arial;
}
body {
    font-family: Arial, "Alumni Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color:#a3b9be;
    color: #001f3f;

}
.header {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between logo and nav */
    align-items: center; /* Center items vertically */
    padding: 10px 20px; /* Add some padding */
    color: #001f3f; /* Text color */
}

.logo img {
    height: 50px; /* Adjust logo size */
}

/* Navigation styles */
.nav ul {
    list-style-type: none; /* Remove default list styles */
    display: flex; /* Display items in a row */
}

.nav li {
    margin-left: 20px; /* Space between menu items */
}

.nav a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline from links */
    padding: 5px 10px; /* Add some padding */
    transition: background 0.3s; /* Transition for hover effect */
}

.nav a:hover {
    background-color: #555; /* Change background on hover */
    border-radius: 5px; /* Rounded corners */
}

.body {
    display:inline-block;
    text-align:center;
    width:100%;
    min-height:700px;
}
.footer {
    width: 100%;
    color: #001f3f;
    text-align: center;
    padding: 15px 0;
}
.homepage-contain {
    text-align:center;
    width:100%;
    display:inline-block;
}
.homepage-post-tiles {
    display: inline-block;
    width:32%;
    padding: 15px;
    margin: 1px;
    border: 1px solid #001f3f;
    border-radius: 5px;
    background-color: #eeeeee;
}
a {
    color: #001f3f;
    text-decoration:none;
}
li {
    list-style-type: none;
}
.search-contain {
    display: inline-block;
    width:100%;
    padding: 15px 0;   
    min-height:200px;
}
.input-post-title, .input-post-content {
    border: 1px solid #001f3f;
    border-radius: 3px;
    width: 550px;
    padding: 6px;
    font-size: 16px;
    font-family: Arial;
}
.input-search {
    border: 1px solid #001f3f;
    border-radius: 3px;
    width: 350px;
    padding: 6px;
    font-size: 16px;
    font-family: Arial;
}
.input-post-content {
    height: 200px;
}
.input-statement-content {
    border: 1px solid #001f3f;
    border-radius: 3px;
    width: 32%;
    padding: 6px;
    font-size: 16px;
    font-family: Arial;
    height: 150px;    
}
.create-post-submit-button {
        display: inline-block;
        font-weight: 400;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        user-select: none;
        border: 1px solid transparent;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: 0.375rem;
        color: #fff;
        background-color: #007bff; /* Bootstrap primary color */
        border-color: #007bff;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
          border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.submit-search {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    color: #fff;
    background-color: #007bff; /* Bootstrap primary color */
    border-color: #007bff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-top:10px;
}

.create-post-submit-button:hover {
    background-color: #0056b3; /* Darker shade for hover */
    border-color: #0056b3;
}

.create-post-submit-button:focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.input-contain {
padding: 10px 0;
}
label {
margin-bottom: 10px;
display:inline-block;
font-size: 18px;
}
.statement-contain {
display: inline-block;
width: 32%;
padding: 15px;
margin: 1px 28%;
border: 1px solid #001f3f;
border-radius: 5px;
background-color: #eeeeee;
}
.statement-contain:hover {
    background-color: #cfcfcf;
}
.statement-clicked {
    background-color: #cfcfcf;    
}
.title-view-contain {
    display: inline-block;
    width:45%;
    margin: 1px auto;
}