body{
	margin: 0;
	font-family: "Roboto", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: <weight>;
  	font-style: normal;
  	font-variation-settings:
    "wdth" 100;
}
header{
	padding: 5px 20%;
	width: auto;
	margin: 0;
	background-color: #2E2E2E;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	color: white;
	font-size: 25px;
	text-align: center;
	box-shadow: 0px 0px 3px #292929;
	position: relative;
}
.headDiv{
	text-align: right;
}
.headDiv a{
	color: #8AB0F2;
	text-decoration: none;
	transition: color 0.3s ease;
}
.headDiv a:hover{
	color: #6d92d4;
}
.headDiv p{
	margin: 0px;
}
main{
	font-size: 20px;
}
h1{
	margin: 0;
	padding: 70px 20%;
	color: #8AB0F2;
	box-shadow: 0px 0px 3px #292929;
	position: relative;
}
#firstDivMain{
	padding: 30px 20% 40px 20%;
	background-color: #DBDBDB;
}
#firstDivMain h2{
	margin: 10px 0px 0px 0px;
	color: #1C1C1C;
}
#firstDivMain p{
	font-size: 15px;
	color: #666666;
	margin: 0;
}
#predSec{
	display: flex;
	background-color: #DBDBDB;
	padding: 30px 20%;
	color: #1C1C1C;
	justify-content: space-between;
	align-items: center;
	color: #2E2E2E;
}
footer{
	display: flex;
	justify-content: space-between;
	margin: 0;
	background-image: url(fon.jpg);
	background-size: 100%;
	padding: 5px 20%;
	color: white;
	font-size: 25px;
	box-shadow: 0px 0px 3px #292929;
	position: relative;
}
.contact-form {
	text-align: center;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 400px;
}

.contact-form h3 {
	margin: 0;
	color: #8AB0F2;
}

.contact-form input,
.contact-form textarea {
	padding: 10px;
	border: none;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
}

.contact-form textarea {
	min-height: 100px;
	resize: vertical;
}

.contact-form button {
	background-color: #8AB0F2;
	color: white;
	border: none;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact-form button:hover {
	background-color: #6d92d4;
}
@media (max-width: 1150px){
	main{
		font-size: 15px;
	}
	#firstDivMain{
		padding: 15px 5px 20px 5px;
	}
	h1{
		padding: 40px 5px;
	}
	#predSec{
		padding: 15px 5px;
		z-index: 0;
		height: 200px;
		justify-content: center;
	}
	#imgDiv{
		position: absolute;
		z-index: 1;
	}
	#textDiv{
		z-index: 2;
	}
	#textDiv p{
		margin: 0;
		padding: 8px 0px;
		background-color: rgba(219, 219, 219, 0.7);
	}

	header{
		flex-direction: column;
		padding: 5px 5px;
		gap: 0;
	}
	.headDiv{
		text-align: center;
	}
	footer{
		padding: 5px 5px;
		flex-direction: column;
		gap: 20px;
	}
	.contact-form{
		order: 1;
	}
}