
body
{
	margin: 0;
	background: #EEEEEE;
}

.aviso
{
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	text-align: justify;
}

header 
{
    background: linear-gradient(to bottom, rgba(255,48,25,1) 0%,rgba(207,4,4,1) 35%); 
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

header h1 
{
    margin: 0; 
	padding: 10px 10px;
	text-align: center;
}

section 
{
    width: 100%;
    margin: 15px auto;
    padding-top: 60px;
}

article 
{
    display: block;
    /*background: linear-gradient(to bottom, #9ee8fa 2%,#d6f9ff 85%);*/
	background: linear-gradient(to top, #f0f8ff 15%,#ffffff 85%);
    width: 75%;
    margin: 18px auto;
    padding: 15px 15px;
    border-radius: 5px;
    opacity: 0.2;
    box-shadow: 3px 3px 15px #999;
	transition: 0.5s;
}

article:Hover
{
	width: 80%;
	opacity: 1;
	transition: 0.5s;
    box-shadow: 29px 29px 29px #999;
}

article h1 
{
    font-size: 25px;
    font-family: 'Lobster', cursive;
}