/* ==========================================================================
   Global styles
   ========================================================================== */

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 1.6rem;
    background-color: #F6F7F8;
}

body > header,
body > section,
body > footer {
    padding: 20px;
}

h1,
h2,
h3 {
    margin: 0;
}

h1,
h2,
h3 {
    margin-bottom: 40px;
}

p {
    text-align: justify;
}

p + p {
    margin-top: 20px;
}

a {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

body > header {
    background-color: #FFFFFF;
    align-content: center;
}

body > header img {
    height: 50px;
    width: 380px;
    display: block;
  	margin-left: auto;
  	margin-right: auto;
}

/* ==========================================================================
   Section
   ========================================================================== */

body > section {
    margin: auto;
    max-width: 1000px;
    min-height: 500px;
}

section > header,
section > form > div,
section > div {
    background-color: #FFFFFF;
    border: 1px solid #D6D9DC;
    border-radius: 5px;
    padding: 20px;
}

/* Header
   ========================================================================== */

section > header {
    margin-bottom: 20px;
    text-align: center;
}

/* Form
   ========================================================================== */

input[type=text],
input[type=number],
input[type=email],
input[type=date],
input[type=submit],
select,

select::-ms-expand {
    display: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

body > footer {
    background-color: #373737;
    color: #F6F7F8;
}

body > footer strong {
    padding-right: 10px;
}

/* ==========================================================================
   Special media query for the main logo
   ========================================================================== */

@media screen and (max-width: 440px) {
    
    /* Header
       ====================================================================== */
    body > header img {
        height: auto;
        width: 100%;
    }
}