body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

.top-bar img {
    height: 300px;
}

.title-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}

.content {
    text-align: center;
    margin-top: 50px;
}

.content h2,
.content h3,
.content h4 {
    margin: 15px 0;
}

.links {
    margin-top: 30px;
}

.links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.links a:hover {
    background-color: #ccc;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 50px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}