@charset "utf-8";
/* CSS dOCUMENT*/

/* WHOLE PAGE*/
h1 {text-align: center
	}
h1 {border: 1px solid orange;
	outline-style: dotted;
    outline-color: green;
	}

h2 {font-family: "Times New Roman"; font-size:17; letter spacing:4px}
	}

p {font-family: "Times New Roman"; font-size:15;
	}
body
 {
    background-image: url("cerezas.png");
}

.page {background-color:#ffe6e6;
		width:50%;
		margin:auto;
		padding:5px}

/*HEADER SECTION*/

.dropbtn {
    background-color: #ff0080;
    color: white;
    padding: 18px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}



/*MAIN SECTION*/
main {background-color:#99CCCC;
		width:50%;
		float:left;}

/*SIDEBAR SECTION*/

/*FOOTER SECTION*/
.footer-kaki {background-color:#66FF99;
				clear:both;
			width:110%;}
				
