body {
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #0e0e0e;
    color: #f0f0f0;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #202020;
    padding: 10px 20px;
}

.logo {
    width: 100px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #00ff00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #ff0000;
}

h1 {
    text-align: center;
    color: #00ff00;
    margin-top: 20px;
    font-size: 2.5rem;
}

.content-grid {
    display: grid;
    gap: 20px;
    padding: 20px;
}

.content-grid h2 {
    color: #ff0000;
}

.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.zombie-img {
    width: 45%;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.zombie-img:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #181818;
}


@media (max-width: 599px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .zombie-img {
        width: 90%;
    }

    h1 {
        font-size: 1.8rem;
    }

    body {
        font-size: 14px;
    }
}


@media (min-width: 600px) and (max-width: 1199px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zombie-img {
        width: 40%;
    }

    h1 {
        font-size: 2.2rem;
    }

    body {
        font-size: 16px;
    }
}


@media (min-width: 1200px) {
    .content-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .zombie-img {
        width: 30%;
    }

    h1 {
        font-size: 3rem;
    }

    body {
        font-size: 18px;
    }
}
