﻿#main
{
 	background-color: Navy;
    color: White;
 	top: 0;
 	bottom: 0;
 	left: 20%;
	right: 0;
	border: 1px solid white;
	position: absolute;
	display: block;
    box-sizing: border-box;
	overflow: auto;
    font-size: 1em;
}
#content {
    margin-top: 2%;
    margin-right: 1%;
    float: right;
    width: 73%;
    font-size: 1.2em;
    height: 40%;
}
#content p 
{
    padding-bottom: 2%;
}
.contactus 
{
    display: block;
    width: 50%;
    background-color: Black;
    font-size: .9em;
    border: 1px solid white;
    text-align: center;
}
.contactus header 
{
    width: 100%;
    color: Blue;
}
.contactus h2 
{
    font-size: 2em;
    text-align: center;
    width: 100%;
    background-color: Aqua;
    color: black;
}
.contactus section 
{
    height: 60%;
}
.contactus form 
{
    margin: 0 auto;
    width: 100%;
}
.contactus label 
{
    display: block;
    margin-top: 1%;
    margin-left: 15%;
    text-align: left;
    color: white;
}
.contactus input, textarea
{
    width: 70%;
    border: 1px solid black;
    border-radius: 10px;
    padding: 1%;
    font-family: Times New Roman;
    font-size: 0.7em;
    color: black;
    background-color: white;
    color: black;
}
.contactus textarea 
{
    border-radius: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.contactus input:focus, textarea:focus 
{
    border: 1px solid red;
    background-color: LightGray;
}
.contactus div 
{
    display: inline-block;
    width: 80%;
    text-align: center;
    padding-bottom: 1%;
}
.contactus div input 
{
    width: 20%;
    font-size: .7em;
}
.contactus #submit 
{
    width: 20%;
    float: right;
    cursor: pointer;
    color: Black;
}
#submit:hover 
{
    background-color: CadetBlue;    
}
.contactus footer 
{
    display: block;
    height: 15%;
    background-color: Aqua;
    width: 100%;
    text-align: center;
}
.contactus p 
{
    display: block;
    padding-top: 2%;
    font-size: 1em;
    color: Black;
    background-color: Aqua;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 780px) 
{
    #header h1 
    {
        font-size: 2em;
    }
}
@media screen and (max-width: 480px) 
{
    #header h1 
    {
        font-size: 1.5em;
    }
