@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.contact {
	background: #1C1D1F;
	height: 100vh;
	max-width: 1920px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: auto;
	position: relative;
}

.header {
	position: fixed;
	width: 100%;
	top: 40px;
	left: 0;
	padding: 10px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 9999;
}

.header .logo img {
	max-width: 50px;
	transition: 0.4s;
}

.header .logo img:hover {
	transform: translate(-2px, -2px);
	transition: 0.4s;
}

.header ul {
	display: flex;
	justify-content: center;
	align-items: right;
}

.header ul li {
	list-style: none;
	margin-left: 80px;
}

.header ul li a {
	color: white;
	text-decoration: none;
	padding: 10px 30px;
	border-radius: 10px;
	transition: 0.5s;
	font-weight: 300;
}

.header ul li a:hover {
	background-color: antiquewhite;
	color: black;
	transition: 0.4s;
}

.contacttext {
}

.contactinfo {
	padding-top: 100px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.contactperson img {
	width: 250px;
	height: auto;
	margin-right: 200px;
}

.contacttext h1 {
	color: white;
	font-size: 50px;
	font-weight: 600;
}

.contacttext p{
	color: lightgray;
	font-weight: 200;
	font-size: 15px;
	width: 600px;
}

label {
	margin-left: 10px;
}

.firstname, .lastname, .sub, .email{
	display: flex;
	flex-direction: column;
	width: 300px;
	color: white;
	font-size: 15px;
	font-weight: 300;
	margin-top: 10px;
}

.sub {
	width: 600px;
}

input[type=text], select, textarea {
	padding: 10px;
	border-radius: 10px;
	color: black;
	background: pink;
}

.contacttext a{
	color: white;
	padding: 10px 30px;
	background: orange;
	border-radius: 10px;
	text-decoration: none;
	transition: 0.8s;
}

.submit {
	margin-top: 30px;
}

.contacttext a:hover {
	background-color: black;
	border: 2px white solid;
	transition: 0.8s;
}

