
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
}
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #000;
}
.navbar .logo {
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
