body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #666;
    letter-spacing: 0px;
    line-height: 1.6em;
    font-weight: 400;
}

.logo {
    max-width: min(60%, 600px);
    height: auto;
    padding: 20px;
}

.logo-container {
    background-color: #16161d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.fierro-link {
    color: white;
    font-size: 1.5em;
    font-family: 'Lora';
}

.fierro-title {
    color: #cfd0d2;
}

.flier-container {
    text-align: center;
}

.flier {
    display: inline-block;
    width: 600px;
    height: auto;
    margin: 20px auto;
}

.header-img {
    height: 100vh;
    background-image: url("tango-pose.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.header-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.tango-connection {
    padding-block: 5%;
    padding-inline: 1%;
}

.second-img {
    height: 100vh;
    background-image: url("milonga.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.second-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

h1, h2, h3 {
    color: #16161d;
    font-weight: 400;
}

h1 {
    font-family: 'Lora';
    font-size: 2.2em;
    line-height: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    
}

h2 {
    font-size: 1.5em;
    line-height: 1.4em;
    letter-spacing: 1px;
}

h3 {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
    line-height: 1.2em;
}

.text-body {
    margin: auto;
    width: min(90%, 950px);
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(200px, calc((100% - 30px) / 2)), 1fr));
    gap: 30px;
    grid-auto-flow: dense;
}

/* Mobile */
@media (max-width: 600px) {
    .fierro-link {
        font-size: 1.2em;
    }

    .flier {
        width: 300px;
    }

    .header-img {
        background-position: 65%;
        background-attachment: scroll;
    }

    .second-img {
        background-position: 65%;
        background-attachment: scroll;
    }
}