#header{
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 10;
    overflow: hidden;
    text-align: center;
    height: 35vh;
    background-color: rgba(0, 0, 0, 0.45);
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
}
#header p{
    color: white;
    font-size: 1.5em;
    margin: 0;
}
#header h1{
    color: white;
    font-weight: bold;
    font-size: 3em;
    margin: 0;
}
#content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2,
h3,
h4 {
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}

#content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}