@font-face {
    font-family: 'Lato', sans-serif;
}

@font-face {
    font-family: 'Arvo', serif;
}

@font-face {
    font-family: 'Roboto', sans-serif;
}

* {
    padding:0;
    margin:0;
}

html, body {
    font-family:Lato;
    background: #F9F9F9;
    color: black;
    text-align:center;
}

p {
    margin:20px 0 ;
    margin-left:25px;
}

h1,h2{
    color:#F44336;
    font-family:Arvo;
}

header {
    position:fixed;
    background-color:#333333;
    padding:10px;
    width:100%;
    font-family: Arvo;
    text-align:left;
    z-index:999;
}

    header img {
        display:inline;
        margin: 0 10px
    }

    header h1 {
        display: inline-block;
        font-size: 50px;
        vertical-align: bottom;
        font-family:Arvo;
        
    }

    header h2 {
        font-family:Arvo;
        position: absolute;
        top: 20px;
        font-size: 30px;
        left: 130px;
        
    }

.homeButton {
    display:inline-block;
    cursor:pointer;
    background: #333333;
}

nav {
    display: inline-block;
    vertical-align: top;
    margin-top: 45px;
    float: right;
    margin-right: 30px;
}
nav ul li {
    display:inline;
    text-decoration:none;
    margin:5px;
}

nav a {
    color:#F44336;
    font-size:20px;
}

.content {
    padding:35px;
    max-width:1000px;
    display:inline-block;
    text-align:left;
    padding-top: 135px;
}

.componentWrapper {
    text-align:center;
    margin-top:25px;
}

.component {
    border-radius:5px;
    width:270px;    
    height:270px;
    vertical-align:middle;
    display:inline-block;
    border:2px solid #F44336;
    color: #F44336;
    text-align:center;
    margin:0 5px;
    padding:20px;
    position:relative;
    margin-bottom:10px;
}

    .component p {
        line-height:initial;
        margin:0;
        color:black;
        text-align:left;
    }

.componentCircle {
   
    border-radius:50%;
    width:70px;
    font-family:Arvo;
    line-height:70px;
    display:inline-block;
    border:2px solid #F44336;
    color: #F44336;
    text-align:center;
    font-size:50px;
    margin:0 5%;
    margin-bottom: 20px;
}

.componentFooter {
    bottom: 2px;
    position: absolute;
    width: 100%;
    left:0;
}

footer {
    background: #444;
    padding:10px 0;
    width:100%;
    height:200px;
    color:white;
}

input,select {
    display: block;
    border: 2px solid #444;
    border-radius: 3px;
    margin-bottom:15px;
    font-size:15px;
    padding:5px;
   
    max-width:100%;
}

    input:focus, select:focus {
        border-color: #F44336;
        outline:none;
    }

select {
    margin-bottom:-2px;
}

#otherDescription {
    display:none;
    margin:0;
}

input {
    width:100%;
    max-width:500px;
}
textarea {
    width:100%;
}

form {
    padding-left: 25px;
}

label {
    font-size:15px;
}

#submitButton {
    background: #F44336;
    color:white;
    border:none;
    font-size:20px;
    width:100px;
    padding:8px;
    cursor:pointer;
    margin-top:25px;
}

    #submitButton:hover {
        background: #FB5B4F;
    }

    #submitButton:active {
        background: #DC3C30;
    }

.documentWrapper {
    text-align:center;
}

.documentButton {
    position:relative;
    margin: 10px 30px;
    text-align:center;
    display:inline-block;
    height:150px;
    width:150px;
    padding:0px 0px;
    border:2px solid #F44336;
}

    .documentButton:hover {
        background:rgb(255, 222, 220);
    }
    .documentButton img {
    height: 100px;
    margin-top: 15px;
    
    }
    .documentButton h3 {
        margin-top:5px;
        color:#F44336;
        text-decoration:underline;
        
        font-size:15px;
        /* left: 50%; */
        /* font-size: 10px; */
       
        
    }

.field-validation-error {
    color: red;
    margin-left: 10px;
    font-size: 12px;
}

footer span {
    font-size:13px;
}

footer a {
    font-weight:bold;
    color: #F44336;
}