*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background: #2C3E50;
    height: 70px;
    width: 100%;
}
.marca{
    position: relative;
    text-align: center;
    top: 22px;
}
.marca a{
    color: #1ABC9C;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
}
/* header termina */
.imagen{
    display: flex;
    padding: 10px;
    justify-content: center;
}
.imagen img{
    height: 340px;
    width: 700px;
}
.contenido{
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 46%;
}
.contenido h1, h2{
    font-size: 20px;
    margin: 20px 0;
}
@media screen  and (max-width: 640px){
    .marca{left: 34%;}
    .imagen img{width: 400px;}
    .contenido{width: 95%;}
}
@media screen and (max-width: 800px) {
    #check:checked ~ .menu{left: 0;}      
    .menu{
        background: #fff;
        top: 69px;
        left: -100%;
        transition: all 0.8s ease;
        overflow-y: scroll;
        overflow: -moz-scrollbars-vertical;
        width: 100%;
        height: 100vh;
        z-index: 200;
    }
    .menu a{
        color: #000;
        display: block;
        border-bottom: 1px solid #000;
        box-sizing: border-box;
        text-transform: uppercase;
        font-size: 0.8rem;
        padding: 2px 0 0 0;
        padding-left: 30px;
        line-height: 65px;
        height: 70px;
        width: 100%;
    } 
    .menu-icon{
        cursor: pointer;
        display: block;
        float: left;
        left: 5%;
        margin: 20px 5px; 
        position: absolute;
    }
}