body {
    font-family: 'Titillium Web', sans-serif;
    background-color: black;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
}

.container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#home {
    height: 100%;
}
h2 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    margin: 0;
    color: white;
    margin-bottom: 1.5rem;
}

h3 {
    font-weight: 300;
    font-size: 1.5rem;
    margin: 0;
    color: white;
    margin-bottom: 2rem;
}

.col {
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.btn {
    padding: 0.5rem 1rem;
    background-color: white;
    text-decoration: none;
    color: black;
}

.btn:hover {
    border: 1px solid white;
    background-color: transparent;
    color: white;
}

.bg-image {
    background-size: cover;
    background-position: center;
}

.artigas {
    background-image: url('../img/artigas.jpg');
}

.baigorria {
    background-image: url('../img/baigorria.jpg');
}

.bg-header {
    width: 100%;
    position: absolute;
    height: 100%;
    background-color: rgba(0,0,0,0.15);
}

.z-1 {
    z-index: 1;
}

header {
    position: fixed;
    z-index: 1;
    top: 2rem;
    left: 2rem;
}

footer {
    position: fixed;
    z-index: 1;
    bottom: 2rem;
    right: 2rem;
}


.border {
    border-right: 4px solid white;
}

@media (max-width:767px) {
    .container {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    .border {
        border-bottom: 4px solid white;
        border-right: none;
    }

    header {
        left: 0;
        right: 0;
        text-align: center;
    }

    footer {
        left: 0;
        right: 0;
        text-align: center;
    }
}