body {
    margin: 0;
    font-family: "Courier New", monospace;
    background: #1a1a1a;
    color: #e2e2e2;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #000;
    color: #fff;
    border-bottom: 4px solid #444;
}

header .logo {
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.hero img {
    text-align: center;
    width: 100%;
    height: 500px;
    color: #fff;

}

.hero h2 {
    font-size: 80px;
    margin-bottom: 10px;
}

.section {
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px dashed #444;
}

.section h2 {
    font-size: 50px;
}

.gallery {
    column-count: 4;
    column-gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5px;
    padding: 40px;
}

.gallery img {
    margin: 0 0 0;
    width: 100%;
    border: 3px solid #333;
    filter: grayscale(80%) contrast(120%);
    cursor: pointer;
    transition: 0.3s;
    object-fit: cover;
    display: block;
}
.gallery img:hover {
    filter: grayscale(30%) contrast(140%);
}

#work.section {
    padding: 20px;
}

.footer {
    font-size: 10px;
    text-align: center;
}

@media screen and (max-width:500px) {
    .gallery {
        column-count: 2;
        padding: 8px;
    }

        .footer {
        font-size: 7px;
    }
}
