/*GRID CONTROL*/
body{
	display: grid;
	grid-template-columns: 130px 450px;
	grid-template-rows: auto auto auto;
	grid-gap: 20px;
	padding-left: 10px;
	padding-top:10px;
}

aside{
	grid-column: 1;
	grid-row:1/3;
}

section{
	grid-column:2;
	grid-row:1;
}

article{
	grid-column:2;
	grid-row:2;
}

footer{
	grid-column:2;
	grid-row:3;
}
/*GRID CONTROL*/
/*FONT CONTROL*/
html{
	font-family: "Verdana", sans-serif;
	font-size: 20px;
}

table{
	font-size: 0.6rem;
	border-collapse: collapse;
	width: 100%;
}
table, th, td{
		padding: 5px;
		border: 1px solid black;
		text-align: left;
}
h2{
	font-size: 1rem;
	text-align: center;
	color: #b2b2b2;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0eb;
}

ul, ol, dl {
	font-size: 0.75rem;
}

p{
	font-size: 0.75rem;
}

li,p, dt, dd {
	line-height: 1.5;
}

.date p {
	font-size:10px;
}
/*FONT CONTROL*/
/*GENERAL CONTROL*/
section{
	opacity:0.5;
	height: 100px;
}
article{
	width:450px;
}
footer {
	font-family: "Verdana", sans-serif;
	color: #cccccc;
}

hr{
	margin-left:auto;
	margin-right:auto;
}
/*GENERAL CONTROL*/
/*MENU CONTROL*/
.menu	{
	width:130px;
	font-family: "Verdana", sans-serif;
	font-size: 15px;
}
.menu a {
	background-color: #eeee;
	color: black;
	display: block;
	padding:5px;
	text-decoration: none;
}
.menu a:hover{
	background-color:#ccc;
}
.menu a.active{
	background-color: #515151;
	color: white;
}

.menu img{
	height: 15px;
	background-color: #eeee;
	background-size: 300px 25px;
	display: block;
	padding:5px;
	padding-right: 97.5px;
}
/*MENU CONTROL*/
/*IMAGE CONTROL*/
.center{
	display: block;
	margin-left: auto;
	margin-right:auto;
}

#myImg{
	cursor: pointer;
	transition: 0.3s;
}

#myImg:hover {opacity:0.7;}

.modal{
	display: none;
	position: fixed;
	z-index:1;
	padding-top:100px;
	left:0;
	top:0;
	width:100%;
	height:100%;
	overflow:auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.9);
}

.modal-content{
	margin:auto;
	display:block;
	width:80%;
	max-width: 1200px;
}

.modal-content{
	animation-name: zoom;
	animation-duration: 0.6s;
}

@keyframes zoom{
	from{transition: scale(0)}
	to{transition: scale(1);}
}

.close{
	position: absolute;
	top:15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover,
.close:focus{
  color: #bbb;
  text-decoration: none;
  cursor: pointer;	
}

@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/*IMAGE CONTROL*/
/*BUTTON*/
#myBtn{
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index:99;
	border: none;
	outline: none;
	background-color: #eeee;
	color: black;
	cursor: pointer;
	padding: 15px;
	border-radius: 10px;
	font-size: 0.75rem;
}

#myBtn: hover{
	background-color: #ccc;
}
