* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.second-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 0;
}

.gallery {
    display: grid;
    width: min(90%, 1200px);    
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
    }
}

@media(max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(prefers-color-scheme: dark) {
    body {
        background-color: #222;
        color: #fff;
    }

    .gallery img {
        box-shadow: 1px 1px 4px rgba(255, 255, 255, 0.2);
    }
}