main {
	min-height: calc(100vh - 240px);
}

h1 {
	text-align: center;
	text-transform: uppercase;
	color: #E52322;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

#mainContact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1100px;
	margin: 0 auto;
}

#form_contact label,
#location p,
#messageInputContainer {
    font-family: Helvetica, sans-serif;
}

#form_contact {
    position: relative;
    background-color: #fff;
    width: 330px;
    transition: ease all 0.75s;
    margin-bottom: 20px;
}

#location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size:small;
    padding-top: 10px;
    padding-left: 20px;
    padding-right:20px;
}

#location p {
    font-size: 16px;
    padding-left: 5px;
    padding-right: 5px;
}

#location p:first-child{
    text-align: center;
    padding-bottom: 8px;
    text-decoration: underline;
}

.inputContainer,
#messageInputContainer {
    display: flex;
    flex-direction: column;
}

.inputContainer {
    margin-left: 20px;
    margin-right: 20px;
}

label{
    display: flex;
    justify-content: center;
    width: 100px;
    background-color: #E52322;
    color: white;
    font-size: 15px;
    margin-top: 10px;
    border-radius: 50px;
}

.inputContainer input{
    height: 36px;
}

input, textarea{
    width: 290px;
    font-size: 18px;
    margin-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #000;
    border-radius: 5px;
}

#messageInputContainer {
	resize: none;
	max-height: 200px;
    padding: 10px;
}

.inputContainer input:focus,
#messageInputContainer textarea:focus{
    outline: none;
}

.button {
    display: flex;
    justify-content: center;
    margin: 10px auto;
    width: 100%;
}

.button a{
    text-decoration: none;
}

button{
    height: 40px;
    width: 290px;
    background-color: white;
    border-style:solid;
    border-color: #E52322;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.5s;
    padding: 0 15px;
    cursor: pointer;
    color: black;
   	font-weight: bold;
}

button:hover{
    background-color: #E52322;
    color: white;
    transition: 0.5s;
}

button:disabled,
button[disabled]{
	border-style:solid;
	border-color: #E52322;
	background-color: white;
	color: grey;
	cursor: not-allowed;
}

@media screen and (min-width: 100px) and (max-width: 650px){
    #form_contact {
        width: 100%;
    }
    #location {
        padding-left: 0;
        padding-right: 0;
    }
    #location p {
        font-size: 14px;
    }
    #location p:first-child{
        padding-bottom: 0;
    }
    .inputContainer {
        margin-left: 0;
        margin-right: 0;
    }
    label{
        width: 80px;
        font-size: 14px;
    }
    input, textarea{
        width: 100%;
        font-size: 16px;
    }
    button{
        font-size: 14px;
    }
}

@media screen and (min-width: 320px) and (max-width: 1800px) {
	#mainContact {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 60%;
	}
}



