/* style.css */
body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #FFF;
    text-align: center;
    padding: 50px;
    margin: 0;
}
h1 {
    font-size: 2.5em;
    text-transform: uppercase;
}
nav {
    margin: 30px 0;
    text-align: center;
}
nav a {
    color: #FFF;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
}
nav a:hover {
    color: #FF0000;
}
.logo {
    width: 120px;
    height: auto;
    float: left;
    margin-right: 20px;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}
.contact {
    margin-top: 40px;
    font-size: 1.1em;
}
.contact a {
    color: #FF0000;
    text-decoration: none;
}