@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*, 
*::before, 
*::after {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-image: url("./images/background.webp");
}

.logo {
    width: 20vw;
    max-width: 200px;
    height: 20vw;
    max-height: 200px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 50%;
}

.socialNetwork {
    display: flex;
    gap: 15px;
}

.socialNetwork img {
    width: 35px;
}

section:nth-child(1),
section:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
}

.title {
    text-align: center;
    max-width: 650px;
    align-self: center;
    margin: 50px 0 25px;
}

h2,
h3,
ul,
p {
    align-self: flex-start;
}

p {
    text-align: justify;
}

.gallery {
    width: 100%;
    max-width: 1400px;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1vw;
    margin: 50px 0;
}

.gallery img {
    width: 100%;
    height: 20vw;
    object-fit: cover;
    border-radius: 7px;
}

.container {
    max-width: 1000px;
    max-width: auto;
}

@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        margin: 25px 0;
    }

    .gallery img {
        width: 100%;
        height: 30vw;
        object-fit: cover;
        border-radius: 7px;
    }
}

h2:not(.title) {
    margin: 35px 0;
}

.textEnd {
    margin: 50px 0;
    text-align: center;
}

h3 {
    margin-top: 35px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

footer {
    color: #fff;
    background-color: #111111;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}