/* General */
* {
    font-family: Arial;
    font-size: 1rem;
    margin: 0;
    color: #777777;
}

div, header, nav, footer{
    box-sizing: border-box;   /* Opera/IE 8+ */
}

div#content {
    padding: 80px 5px 5px 5px;
}

/*------- Font -------*/
h1, h2, h3, h4, h5, h6 {
    color: #3B3B3B;
}
h1 {
    font-size: 3rem;
    padding-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    padding-bottom: 15px;
}

h3 {
    font-size: 2rem;
    padding-bottom: 15px;
}

h4 {
    font-size: 1.5rem;
    padding-bottom: 10px;
}

h5 {
    font-size: 1.2rem;
    padding-bottom: 10px;
}

h6 {
    font-size: 1rem;
    padding-bottom: 10px;
    font-weight: normal;
    font-style: italic;
}

a {
    color: #32CD32;
    text-decoration: none;
}
a:hover {
    cursor: pointer;
    text-decoration: underline;
}


/*------- Div Message -------*/
div.msg-error {
    background-color: #F9BDBD;
    color: #E21414;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1.3px solid #FF0000;
}



/*------- Input -------*/
input, select {
    padding: 3px 5px;
    border: none;
    border-bottom: 1px solid;
    outline: none;
    min-width: 250px;
}
input[type="file"] {
    border: none;
}
input[type="number"] {
    text-align: right;
}
input[type="checkbox"], input[type="radio"] {
    min-width: auto;
}

textarea {
    padding: 3px 5px;
    min-width: 250px;
    min-height: 150px;
    outline: none;
}

input[type="button"], input[type="submit"], input[type="reset"], button {
    border: none;
    border-radius: 3px;
    padding: 10px 40px;
    margin: 15px 0;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer;
    text-align: center;
    background-color: #2ecc71;
    width: auto;
    min-width: 0;
    color: #FFF;
}
input[type="button"]:active, input[type="submit"]:active, input[type="reset"]:active, button:active, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
    background-color: #2ecc33;
}

::placeholder{
    color: pink;
}

::-webkit-input-placeholder { /* Edge, android browser, old(Chrome, Safari, Opera) */
  color: pink;
}

:-ms-input-placeholder { /* IE 10+ */
  color: pink;
}

/*------- Form -------*/
input.form {
        width: 250px;
        margin-top: 5px;
        margin-bottom: 10px;
}

label.form {
    display: inline-block;
    width: 250px;
    vertical-align: top;
    margin-top: 4px;
    cursor: pointer;
}

/*------- Header -------*/
header{
    padding: 5px;
    width: 100%;
    height: auto;
    box-shadow: 0 2px 5px 2px #D3D3D3;
    position: fixed;
    z-index: 1200;
    background-color: #222;
}

header .inside{
    float: right;
}

nav{
    padding-top: 10px;
    font-size: 1.1em;
}

nav ul{
    display: block;
    list-style: none;
    position: relative;
    float: left;
}

nav ul li{
    float: left;
    padding: 10px;
    margin-right: 20px;
}
nav ul li.last{
    float: right;
    margin-right: 5px;
}

nav ul li:hover, nav ul li.active{
    background-color: #31A3DD;
    color: white;
    border-radius: 2px;
    -webkit-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    box-shadow: 3px 3px 0 rgba(121, 121, 121, 1);
}

/*------- MAIN -------*/
main{
    max-width: 1200px;
    margin: auto;
    padding: 70px 10px 20px 10px;
}

/*------- Table -------*/
table{
    border-spacing: 15px;
}

table td, table th {
    border-bottom: 1px solid;
    text-align: left;
    padding: 3px;
}

/*------- Footer -------*/
footer{
    width: 100%;
    padding: 10px;
    position: relative;
    background: #000;
}
footer p{
    color: #FFF;
    font-weight: bold;
    font-size: 0.7rem;
}