@import url('./reset.min.css');

body {
/* 
    margin: 0 auto 0 auto;
    width: 800px;
 */
    display: grid;
    height: 100vh;
    /* grid-template-rows: 10vh 80vh 10vh; */
    grid-template-rows: 60px auto 30px;
    font-family: 'Open Sans', sans-serif;
}

header, footer {
    /* background-color: #113d63; */
    background-color: #FFF;
    color: #000;
    text-align: center;
    -webkit-box-shadow: 0px 0px 5px 3px rgba(131, 184, 220, 0.50);
    -moz-box-shadow:    0px 0px 5px 3px rgba(131, 184, 220, 0.50);
    box-shadow:         0px 0px 5px 3px rgba(131, 184, 220, 0.50);
}

header { background-image: linear-gradient(#b4cddf, #83b8dc); }
footer { background-image: linear-gradient(#83b8dc, #b4cddf); }

main {
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    overflow-y: scroll;
}

footer address {
    font-size: 0.8rem;
    font-weight: 800;
    text-align: center;
}

h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.0rem;
    font-weight: 800;
}

p {
    text-indent: 30px;
    text-align: justify;
}

.codigo {
    font-family: 'Courier New', monospace;
}

.copyright {
    margin-top: 10px;
    text-align: center;
}

/********** Menu **********/
nav {
	margin: 0px auto;
    /* max-width: 800px; */
    /* background: #008FEA; */
    color: #000;
    /* box-shadow:0 3px 15px rgba(0,0,0,.15); */
    font-size: 1.0rem;
    font-weight: 800;
}

nav::after {
	display: block;
	content: '';
	clear: both;
}

nav ul {
    padding: 0;
	margin: 0;
	list-style: none;
}

nav ul li {
	float: left;
	position: relative;
}

nav ul li a {
	display: block;
	color: #000;
	text-decoration: none;
	/* padding: 1rem 2rem; */
	padding: 20px 10px 20px 10px;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	transition: all .3s ease-in-out;
}

nav ul li a:hover,
nav ul li a:focus {
	background: #6093b6;
}

nav ul li a:focus {
	color: white;
}

nav ul li a:not(:only-child)::after {
	padding-left: 4px;
	/* content: ' ▾'; */
	content: ' \25BE';
}

nav ul li ul li {
	min-width: 150px;
}

nav ul li ul li a {
	background: transparent;
	color: #fff;
	border-bottom: 1px solid #DDE0E7;
	padding: 10px 10px 10px 10px;
}

nav ul li ul li a:hover,
nav ul li ul li a:focus {
	background: #6093b6;
	color: #000;
}

.dropdown {
    display: none;
    position: absolute;
    background: #b4cddf;
    text-align: left;
    -webkit-box-shadow: 0px 0px 5px 3px rgba(131, 184, 220, 0.50);
    -moz-box-shadow:    0px 0px 5px 3px rgba(131, 184, 220, 0.50);
    box-shadow:         0px 0px 5px 3px rgba(131, 184, 220, 0.50);
}
/* 
.dropdown li a::before { content: ':: '; }
*/
