html, body
{
    margin: 0;
    padding: 0;
    background: #f2f2f2;
}

.cont_gallery
{
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(3,20vw);
    grid-template-rows: repeat(2,15vw);
    grid-gap: 1px;
    justify-content: center;
    margin-top: 4%;
    margin-bottom:5%;
}

.cont_gallery img
{
    width: 20vw;
    height: 15vw;
    object-fit: cover;
    transition: transform .2s; /* Animation */
    cursor: pointer;
}

.cont_gallery img:hover 
{
    transform: scale(1.1);
}

#menu
{
    opacity: 1;
}

#fondo_back
{
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    object-fit: cover;
}

.contenedor_texto_portfolio h1, .contenedor_texto_portfolio p
{
    font-family: 'Raleway', sans-serif;
    color: #64727f;
    text-align: center;
    padding: 0px 200px;
}

.contenedor_texto_portfolio h1
{
    padding-top: 25px;
    font-weight: 700;
    font-size: 25px;
}

.contenedor_texto_portfolio p
{
    font-weight: 200;
    font-size: 20px;
}

@media (max-width:1024px)
{
    .cont_gallery
    {
        display: grid;
        width: 100%;
        height: auto;
        grid-template-columns: repeat(2,45vw);
        grid-template-rows: repeat(3,40vw);
        grid-gap: 3px;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }

   .cont_gallery img
    {
        width: 45vw;
        height: 40vw;
    }

    .contenedor_texto_portfolio h1, .contenedor_texto_portfolio p
    {
        padding: 0px 25px;
    }

    .contenedor_texto_portfolio h1
    {
        font-size: 4vw;
        margin-top: 50px;
    }

    .contenedor_texto_portfolio p
    {   
        font-size: 3vw;
    }
    .contenedor_texto_portfolio {
        h2 {
            padding-top: 25px;
            font-weight: 700;
            font-size: 25px;
            color: #64727f;
            text-align: center;
            padding: 0px 200px;
            padding: 0 !important;
            margin: 0 !important;
        }
    }
}

/*
#logo_menu {
    float: left;
    height: 55px;
    margin-top: 12px;
    margin-left: 35px;
}*/

#redes{
    opacity: 0;
}