html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}/* HTML5 display-role reset for older browsers */article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}body {line-height: 1;}ol, ul {list-style: none;}blockquote, q {quotes: none;}blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}table {border-collapse: collapse;border-spacing: 0;}a{text-decoration: none;}
*{
    box-sizing: border-box;
}

body{
    background-color: #FFFDF9;
    font-family: 'Roboto', sans-serif;
}

 /* Style inputs with type="text", select elements and textareas */
input[type=text], 
select, 
textarea{
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit]{
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 30px auto 0 auto;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover{
    background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container{
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
} 

.container-form{
    padding: 15px;
    margin-bottom: 30px;
}

form{
    margin: auto;
    width: 700px;
    max-width: 100%;
    padding: 15px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 0 7px 0 rgba(152,140,119,0.38);
}

h1{
    font-size: 60px;
    text-shadow: -1px -1px #0c0, 1px 1px #060, -3px 0 4px #000;
    font-family: inherit;
    color: #45a049;
    -moz-box-shadow: 2px 2px 6px #888;  
    -webkit-box-shadow: 2px 2px 6px #888;  
    box-shadow:2px 2px 6px #888;  
    text-align:center;
    display:block;
    background-image:url(images/078.jpg); 
    background-size: cover;
    background-position: center;
    padding: 180px 15px;
    margin-bottom: 30px;
    line-height: 1.2;
}
@media(max-width: 1080px){
    h1{
        font-size: 50px;
        padding: 100px 15px;
    }
}
@media(max-width: 750px){
    h1{
        font-size: 40px;
        padding: 60px 15px;
    }
}
@media(max-width: 500px){
    h1{
        font-size: 30px;
    }
}