#main{
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact{
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	float: right;
	width: 400px;
	height: 550px;
	background-color: var(--background);
	border-radius: 5px;
	padding: 50px;
}


.contact label{
	font-weight: 100;
}

.contact input, .contact textarea{
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	outline: none;
	border-radius: 5px;
	border: none;
	box-shadow: 0px 0px 3px 1px dodgerblue;	
	background-color: var(--background);
	color: var(--text);
	width: 100%;
	height: 35px;
	padding-left: 10px;
	margin-top: 10px;
	margin-bottom: 30px;
	transition: 0.4s;
	-webkit-appearance: none;
}

.contact textarea{
	height: 50px;
}

.contact input:focus{
	box-shadow: 0px 0px 5px 3px dodgerblue;
}


.contact button{
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        outline: none;
        border-radius: 5px;
        border: none;
	background-color: dodgerblue;
        color: white;
        width: 150px;
        height: 35px;
        padding-left: 10px;
        margin-top: 10px;
        margin-bottom: 30px;
        transition: 0.4s;
        -webkit-appearance: none;
}


.contactfor{
	height: 55px;
	border-bottom: solid gray 0.5px;
	width: calc(100% - 15px);
	padding-left: 15px;
}

.contactfor h4{
	font-weight: bold;
	margin: 0;
	margin-top: 7.5px;
	margin-bottom: 7.5px;
}

.contactfor h6{
	margin: 0;
	margin-top: 15px;
	font-weight: 100;
	padding-left: 5px;
}


@media only screen and (max-width: 600px) {
	.notshow{
		display: none;
	}	
}
