@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playwrite+AU+SA:wght@100..400&display=swap");

* {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Roboto", serif;
	font-style: normal;
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
}
.content {
	width: calc(100% - 250px);
	min-height: 100vh;
	overflow-x: hidden;
	box-sizing: border-box;
	margin-left: 250px;
	position: relative;
	background-color: #3f434c;
}
.content-background {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	z-index: -3;
	background-color: #3f434c;
}
.content-wrapper {
	width: calc(100% - 250px);
	min-height: calc(100vh - 150px);
	overflow-x: hidden;
	box-sizing: border-box;
	margin-left: 250px;
	position: relative;
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.content-wrapper-headline {
	width: 100%;
	box-sizing: border-box;
	padding: 25px 0px 5px 0px;
	font-size: 28px;
	font-weight: 600;
	color: #e4e4e4;
	text-decoration: underline;
	text-decoration-color: #dd9361;
	text-decoration-thickness: 3px;
}

.content-wrapper-text {
	width: 60%;
	box-sizing: border-box;
	padding: 25px;
	font-size: 20px;
	font-weight: 400;
	line-height: 35px;
	color: #b3b2b2;
}
.content-wrapper-contact {
	margin-top: 50px;
	width: 250px;
	height: 55px;
	border-radius: 25px;
	outline: none;
	background-color: #03020a;
	color: #f0ecec;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
	border: none;
	transition: 350ms;
}
.content-wrapper-contact:hover {
	cursor: pointer;
	color: #03020a;
	background-color: #fff;
	transition: 350ms;
}
@media (max-width: 1200px) {
	.content {
		width: calc(100%);
		margin-left: 0px;
	}
	.content-wrapper {
		margin-top: 100px;
	}
}
@media (max-width: 900px) {
	.content-wrapper {
		width: 100%;
		margin-left: 50px;
	}
	.content-wrapper-text {
		width: 90%;
	}
}
@media (max-width: 550px) {
	.content-wrapper {
		width: 100%;
		margin-left: 0px;
	}

	.content-wrapper-headline {
		font-size: 25px;
	}

	.content-wrapper-text {
		width: 100%;
		font-size: 18px;
		padding: 15px;
		line-height: 28px;
	}
	.content-wrapper-contact {
		width: 220px;
		height: 45px;
		border-radius: 15px;
		font-size: 16px;
	}
}
@media (max-width: 400px) {
	.content-wrapper-headline {
		font-size: 20px;
	}

	.content-wrapper-text {
		width: 100%;
		font-size: 16px;
	}
}
