@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    background-color: black;
    font-family: "Oswald", sans-serif;
    background-image: url(img/back.png);
    background-size: auto;
    background-position: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5); 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1000;

}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.hero {
    height: 80vh;
    margin-top: 5%;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    text-align: left;
}

.hero-text {
    margin-right: 20px;
}

.hero-text h2 {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 24px;
    font-style: italic;
    margin-top: 10px;
    margin-right: 5%;
}

.hero-image img {
    width: 400px;
    height: auto;
    margin: 15%;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        margin-right: 0;
    }

    .hero-text h2 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 18px;
    }

    nav ul li a {
        font-size: 16px;
    }

    .hero-image img {
        width: 200px;
    }
}