<style > p {
    text-indent: 50px;
}

body {
    background-color: #faf2e4;
    margin: 0 15%;

    font-family: sans-serif;

}

html {
    height: auto;
}

/* Navegation Bar*/
.nav ul {
    list-style: none;
    background-color: #444;
    text-align: center;
    padding: 0;
    margin: 0;
}

.nav li {
    font-family: sans-serif;
    font-size: 1.2em;
    line-height: 40px;
    height: 40px;
    border-bottom: 1px solid #888;
    display: inline-block;
    float: left;
    width: 130px;
    padding: 0 5px 0 5px
}

.nav a {
    text-decoration: none;
    color: #fff;
    display: block;
    transition: .3s background-color;
}

.nav a:hover {
    background-color: #005f5f;
}

.nav a.active {
    background-color: #fff;
    color: #444;
    cursor: default;
}

/*
 @media screen and (min-width: 600px) {
     .nav li {
         width: 120px;
         border-bottom: none;
         height: 50px;
         line-height: 50px;
         font-size: 1.4em;
     }
*/
/* Option 1 - Display Inline */
.nav li {

    margin-right: -4px;
}

/* Options 2 - Float*/
.nav li {}

.nav ul {
    overflow: auto;
    margin: 0 auto;
}

.nav {
    background-color: #444;
}

*/
}

/*End Of Nav Bar*/


h1 {
    text-align: center;
    font-family: serif;
    font-weight: normal;
    text-transform: uppercase;
    border-bottom: 1px solid #57b1dc;
    margin-top: 30px;
}

h2 {
    color: #d1633c;
    font-size: 1em;
}

table {
    width: 100%;
}

table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
}

th,
td {
    padding: 15px;
    text-align: center;
}

table#t01 tr:nth-child(even) {
    background-color: #eee;
}

table#t01 tr:nth-child(odd) {
    background-color: #fff;
}

table#t01 th {
    background-color: black;
    color: white;
}


/*--Style del form-->*/
* {
    box-sizing: border-box
}

/* Full-width input fields */
input[type=text],
input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

input[type=text]:focus,
input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* Set a style for all buttons */
button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

button:hover {
    opacity: 1;
}

/* Extra styles for the cancel button */
.cancelbtn {
    padding: 14px 20px;
    background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn,
.signupbtn {
    float: left;
    width: 50%;
}

/* Add padding to container elements */
.container {
    padding: 16px;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {

    .cancelbtn,
    .signupbtn {
        width: 100%;
    }
}

/*Footer style*/
footer {
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: plum;
    color: white;
    clear: both;
    text-align: center;
    margin: auto;
}

/*header style*/
header {
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: plum;
    color: white;
    text-align: center;
}

section {
    float: left;
    width: 70%;
    padding: 1rem;
    background-color: chartreuse;
    color: black;
}

#wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 1rem;
}

aside {
    float: right;
    margin: auto;
    width: 20%;
    padding: 1rem;
    background-color: gold;
    color: black;
}

</style >
