@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
    box-sizing: border-box;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

.contenedor {
    width: 100%;
    display: table;
}

header {
    width: 100%;
    height: 30px;
    position: fixed;
    top: 0;
    z-index: 100;
}

#cabezote{
	color: #E0FF00;
	font-size: 309%;
	text-align: left;
	font-style: bold;
	width:40%;
	background-color:#000000;
    margin-top: 5%;
    min-width: 200px;
   }

#subtitulo{
	color: #E0FF00;
	font-size: 280%;
	text-align: left;
	font-style: bold;
	width:30%;
	background-color:#000000;
    min-width: 220px;
}

.texto {
	margin-top:1%;
	padding-right: 50px;
	padding-left: 1%;
	background-color: rgba(248,247,247,0.66);
	width:85%;
    
}


.texto1 {
	margin-top:1%;
	padding-right: 10%;
    padding-left: 15%;
	background-color: rgba(248,247,247,0.73);
	width:85%;
}


.texto2 {
	margin-top:1%;
	padding-right: 50px;
	padding-left: 1%;
}
.texto3 {
	margin-top:1%;
    padding-left: 20%;
	background-color: rgba(248,247,247,0.73);
	width:85%;
    flex-wrap: wrap;
    display: flex;
}

.texto3 img {
    margin: 10px;
    }

h1 {
    font-size: 20px;
    text-align: center;
    margin: 5px;
}

#menu-bar {
    display: none;
}

header label {
    float: right;
    margin: 5px;
    cursor: pointer;
}

#menu {
    padding-left: 10px;
    width: 80%;
    height: 80vh;
    background: rgba(0,0,0,0.7);
    transition: all 0.5s;
    transform: translateX(-100%);
}

#menu a {
    display: table;
    font-size: 20px;
    padding-top: 17px;
    text-decoration: none;
    color: floralwhite;
    border-bottom: solid 1px rgba(255,255,255,0.5);
   }
#menu a:hover {
   color: #E0FF00; 
}

#menu-bar:checked ~ #menu {
    transform: translatex(0%);
}

@media (min-width:960px) {
  
    .contenedor {
        width: 100%;
        max-width: 1300px;
        box-sizing: border-box;
    }
    #menu {
        transform: translateX(0%);
        display: flex;
        background: none;
        height: auto;
        width: auto;
        top: 0px;
        float: right;
        
    }
    
    #menu a {
        font-size: 18px;
        padding-top: 2px;
        text-decoration: none;
        color: floralwhite;
        font-size: 100%; 
        border-right: solid 1px rgba(255,255,255,0.5);
        border-bottom: none;
        padding-right: 10px;
        padding-left: 10px;
        }
    header label {
        display: none;
                
    }

    .texto1 {
        padding-left: 35%;
    }
    
    .texto3 {
        padding-left: 35%
    }
}