body {
    background: rgb(44, 131, 245);
    font: normal 15pt Arial;
}

/* --------------- nosso cabecalho ------------------ */

div#interface {
    width: 1280px;
    background-color: rgb(16, 136, 12);
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.473);
    padding: 10px 10px 10px 10px;
}

header#cabecalho img#logo {
    position: absolute;
    left: 710px;
    top: -60px;
}

/* --------------- nosso cabecalho ------------------ */

h1#titu1 {
    color: rgb(0, 240, 92);
    background: rgb(17, 90, 3);
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.616);
    text-align: center;
    padding: 20px;
    margin-top: 70px;
}

p#intro {
    background: rgb(255, 255, 255);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.699);
    border-radius: 15px;
    padding: 10px;
    width: 500px;
    margin-left: 32px;
}

div#logo {
    margin-top: 1px;
    margin: 20px;
}


input {
    background: rgb(198, 252, 191);
    margin: 5px;
    border-radius: 10px;
    padding:  5px;    
}

p.inputsP1 {
    margin-top: 25px;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.562);
    width: 500px;
    margin-bottom: 10px;    
    margin-left: 32px;
}

p#p2 {
    margin-top: 1px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    width: 100px;
    text-align: center;    
    margin-left: 32px;
}


div#separador {
    color: rgb(255, 255, 255);
    background: rgb(2, 51, 31);
    padding: 10px;
    border-radius: 15px;
    width: 100px;
    text-align: left;
    margin-top: 10px;
    margin-left: 32px;
}


div.prints {
    background: white;
    padding: 15px;
    border-radius: 15px;
    width: 500px;
    text-align: left;
    margin-top: 20px;
    margin-left: 32px;
}


footer {
    font-size: 25px;
    color: white;
    text-align: center;
    font-style: italic;
}

/* Menu Interativo */

nav#menu {
    width: 1280px;
    display: block;
}

nav#menu ul {
    width: 1100px;
    font-size: 13px;
    list-style: none;
    text-transform: uppercase;
    position: absolute;
    top: -4px;
    left: 217px;
}

nav#menu li {
    display: inline-block;
    background-color: yellowgreen;
    padding: 10px;
    margin: 2px;
    transition: background-color 1s;
}

nav#menu li:hover {
    background-color: rgb(38, 116, 44);

}

nav#menu a {
    color: black;
    text-decoration: none;
}

nav#menu a:hover {
    color: white;
    text-decoration: underline;
}

/* Menu Interativo */