@charset "utf-8";
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    align-content: left;
}
.overlay:target {
    visibility: visible;
    opacity: 1;
}
#etiqueta{
    width: 250px;
    height: 50px;
    background-image: url("../img/color4.png");
    top: 4;
    border-radius: 7px;
    align-content: center;
    color: #fff;
    font-weight: bold;
    float: left; font-family: sans-serif;
}

#popupBody{
    position: auto;
    width: 80%;
    height: 40%;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 5px #CCC;
    background: #fff;
    float: left; font-family: sans-serif;
    margin: 10% auto;    
}
#cerrar{
    position: fixed;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #F00;
}

.parte1:hover img { 
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;

    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    background: #fff;
}