@charset "UTF-8";


body {
    margin: 0;
    font-family: Arial, sans-serif;
    width: 100%;
}

.encabezado {

    width: 100%;
    min-height: 300px;
    text-align: center;
    background-image: url(../img/fotoCabecera.png);
    background-size: cover;
    padding: 80px 25px
}

h1 {
    font-size: 2em;
    color: white;
}

.subtitulo {
    font-size: 1.5em;
    color: white;
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

#videocentrado {
    width: 50%;
    display: block;
    margin: 2em auto;
    filter: grayscale(0%);
    opacity: 100%;
    border-radius: 16px;

}


.romperFlujo {
    clear: both;
}

li {
    list-style-type: none;
    display: inline;
}

nav {
    text-align: left;
    background-color: rgb(119, 228, 119);
}

a {
    text-decoration: none;
    font-size: 1.5em;
    margin: 0px 5px;

}

h2 {
    text-align: center;
    margin: 16px;
}

h3 {
    text-align: center;
    font-size: 1em;
}

header {
    text-align: justify;

}

.textoCentrado {
    text-align: center;

}

p {
    text-align: justify;

}

.displayFlex_Padre {

    border: 3px solid green;
    border-radius: 10px;
    padding: 10px;
    /* Aqui comienza en diseño responsive*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;

}

.displayFlex_Hijo {
    border: 3px solid brown;
    border-radius: 10px;
    background-color: rgb(193, 239, 224);
    box-shadow: 10px 10px rgb(191, 213, 238), 1em 0 0.4em rgb(119, 188, 245);
    padding: 5px;
    width: 300px;
    margin-bottom: 20px;

}

section {
    margin-top: 16px;
    margin-bottom: 20px;
    min-height: 450px;
   
}
hgroup{
    border: 1px solid transparent;
    width: 60%;
    margin: 0px auto;
    text-align: justify;
}

figure,
img {
    width: 100%;
    border-radius: 10px;
}

figcaption {
    font-size: 0.7em;
    font-style: italic;
}

table {
    width: 70%;
    margin: 16px auto;
}

th{
    background-color: blueviolet;
    color: white;
}

.tdfoot {
    font-style: italic;
    font-size: 1em;
    color: blue;

}

footer {
    font-size: 1em;
    padding: 10px;
    background-color: greenyellow;

}

address {
    text-align: center;
    padding-left: 600px;
}