@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro');


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


body {
    font-family: 'Anonymous Pro', monospace;
    font-size: 16px;
    line-height: 1.6;
    color: #24292e;
    background-color: #f6f8fa;
    padding: 20px;
}


/* NAVIGATION */

nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

nav a {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid black;
    border-radius: 20px;
    text-decoration: none;
    color: black;
    background: white;
}

nav a:hover {
    background: black;
    color: white;
}


/* GALLERY */

.gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}


.gallery-item {
    width: 100%;
    background: white;
}


.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}


.gallery-description {
    padding: 15px;
}


.gallery-description h3 {
    margin-bottom: 5px;
}


.gallery-description p {
    margin-bottom: 0;
}


/* MOBILE */

@media (max-width: 768px) {

    .gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}


@media (max-width: 500px) {

    .gallery {
        grid-template-columns: 1fr !important;
    }

}
