* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: url("https://i.pinimg.com/736x/48/ad/94/48ad942f0e4d073cf4264cd30420fa4b.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    color: white;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: red;
}

/* MENU ICON */
.menu-btn {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

/* HERO SECTION */
.hero {
    text-align: center;
    margin-top: 160px;
    color: white;
}

.hero h1 {
    font-size: 55px;
    color: yellow;
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
}

.hero button {
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    background: blue;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    transform: scale(0.9);
}

/* RESPONSIVE */
@media (max-width: 850px) {

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: 0.3s;
    }

    .nav-links li {
        margin: 20px 0;
    }

    #menu-toggle:checked~.nav-links {
        left: 0;
    }

    .hero {
        display: none;
    }
}