@import url("https://fonts.googleapis.com/css?family=Montserrat");


* {
	margin: 0;
	padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Montserrat", "sans-serif";
}

body {
    background-color: #eee4d3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contenedor {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

header {
    background-color: #ff009d;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enlace {
    position: absolute;
    padding: 15px 30px;
}

.logo {
    height: 30px;
    width: 95px;
}

header > ul {
    float: right;
    margin-right: 20px;
}

header > ul > li {
    display: inline-block;
    line-height: 40px;
    margin: 0 5px;
}

header > ul > li > a {
    color:#ffffff;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 3px;
    text-transform: uppercase;
}

li a:hover{
    background: #ff0000;
    transition: .5s;
}

.baner{
    width: 100%;
    height: auto;
}

marquee {
    background-color: #ff009d;
    width: 100%;
    float: right;
    padding: 5px;
    color: #ffffff;
    font-size: 15px;
}

.main {
    width: 34%;
    background: #ffc400;
    padding: 20px 10px;
    float: left;
    box-sizing: border-box;
}

.main a img {
    width: 24%;
    height: auto;
    float: left center;
    background-color: #00ff22;
    margin-right: 0;
    text-align: center center;
}

.main iframe {
    width: 100%;
    text-align: center;
    margin : 0 0;
}

.main h2 {
    background-color: #ff009d;
    color: rgb(255, 255, 255); ;
    padding: 10px 0;
    text-align: center;
}

.main h3 {
    background-color: #ff009d;
    color: rgb(255, 255, 255); ;
    padding: 5px 10px;
    text-align: center;
}

.main h4 {
    background-color: #ff009d;
    color: rgb(255, 255, 255); ;
    padding: 5px 10px;
    text-align: center;
}


.checkbtn{
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}

@media (max-width: 952px){
    .enlace{
        padding-left: 20px;
    }
    .header ul li a{
        font-size: 16px;
    }
}

@media (max-width: 858px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #2c3e50;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    .header ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    .header ul li a{
        font-size: 20px;
    }
    li a:hover, li a.active{
        background: none;
        color: red;
    }
    #check:checked ~ ul{
        left:0;
    }
}

aside {
    width: 66%;
    padding: 15px;
    box-sizing: border-box;
    background: #ffc400;
    float: left;
}

h2 {
    background-color: #ff009d;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}
video {
    width: 100%;
}

a img {
    width: 100%;
    height: auto;
}

.fb-coments {
    width: 100%;
    height: auto;
}


footer {
    clear: both;
    float: left;
    margin-top: 0%;
    box-sizing: border-box;
    width: 100%;
    padding: 2%;
    color: #fff;
    background: #000000;
    text-align: center;
}

@media screen and (max-width:1200px) {
    .main {
        width: 100%;
    }
    aside {
        width: 100%;
    }
}

@media screen and (max-width:300px) {
    .contenedor{
        width: 100%;
    }
    aside {
        display: none;
    }
    
}

#logo:hover {
    box-shadow: 0 0 20px 5px rgb(0, 0, 0);
    /*padding: 10px;*/
    border-radius: 10px;
    -webkit-transition:all .5s ease;
    -webkit-transform:scale(1.1);
}






