html {
    height:100%;
}
body {
    height:100%;
    width: 100%;
    margin:0;

    background-image: linear-gradient(
        rgba(0, 0, 0, 0.123),
        rgba(0, 0, 0, 0.2)
        ),url("background.jpg");
    background-size: cover;
    background-attachment: fixed;

    display: table;
}

body > header {
    height: 93px;
}

body > header > div {
    width: 50%;
    float: left;
    text-align: center;
}

body > header > div.left > a {
    color: white;
    line-height: 93px;
    font-size: 35px;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Crimson Pro', serif;
}

.home {
    padding-top: 200px;
}

.home > h1 {
    text-align: center;
    font-size: 85px;
}

.home > h1 > a{
    color: white;
    text-decoration: none;
}

.home > h2 {
    color: white;
    text-align: center;
    font-size: 25px;
}

.home > p {
    color: white;
    text-align: center;
    font-size: 20px;
}

body > footer {
    height: 93px;
    display: table-row;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1)
        );
}

body > footer > div {
    width: 50%;
    float: left;
}

body > footer > div > a {
    text-decoration: none;
    color: #666666;
}

body > footer > div.footleft {
    color: #666666;
    padding-top: 7px;
    padding-left: 20px;
    font-size: 15px;
}

body > footer > div.footright {
    color: #666666;
    float: right;
    text-align: right;
    padding-right: 20px;
}

.body_inner_wrap {
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.33),
        rgba(255, 255, 255, 0.73)
        );
    width: 55%;
    display: table;
    margin: 0 auto;
}

.body_inner_wrap > h1 {
    text-align: center;
}
.body_inner_wrap > p {
    margin: 5px;
    text-align: justify;
    text-justify: inter-word;
}

.body_inner_wrap > form {
    text-align: center;
}
.body_inner_wrap > form > p > textarea{
    width: 73%;
}
.body_inner_wrap > form > input {
    height: 35px;
    width: 150px;
    background-color: #72b5e8;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.73),
        rgba(255, 255, 255, 0.33)
        );
}

.error_msj {
    color: red;
    text-align: center;
}
.info_msj {
    color: green;
    text-align: center;
}
