@import url(style.css);

.contact .center{
	text-align: center;
	padding: 2.5rem 0;
}

.center h3{
	font-family: var(--font4);
	color: var(--color4);
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 1.5px;
	margin-bottom: 2.5rem;
}

.contact{
	padding: 2.5rem 1.5rem;
}

.contact .contact-form{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1.5px solid transparent;
	border-radius: 10px;
	box-shadow: 0 0 10px var(--color4);
}
.contact .contact-form:hover{
	border-color: var(--color4);
	box-shadow: 0 0 15px var(--color4);
}

.contact form{
    width: 100%;
	background: url(../imgs/binary-code.jpg) no-repeat, #333;
	background-position: center;
	background-blend-mode: multiply;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

input,
textarea{
    width: 100%;
    font-size: 1.5rem;
    padding: 1rem;
    background: transparent;
	border: 1.5px solid transparent;
	box-shadow: 0 0 10px var(--color4);
    border-radius: 5px;
    color: var(--color2);
}

textarea{
	height: 20rem;
	resize: none;
	margin-bottom: 2.5rem;
}

input:focus, textarea:focus{
	border-color: var(--color4);
	box-shadow: 0 0 15px var(--color4);
}

input::placeholder, textarea::placeholder{
	font-size: 1.4rem;
	color: var(--color4);
	opacity: .8;
}

button{
	font-family: var(--font1);
	font-size: 1.4rem;
	font-weight: 500;
	background: var(--color4);
	border: 1.5px solid var(--color4);
	border-radius: 5px;
	padding: 1.5rem;
	cursor: pointer;
	transition: .3s ease-in-out;
}
button:hover{
	background: transparent;
	color: var(--color4);
	border: 1.5px solid var(--color4);
	box-shadow: 0 0 15px var(--color4);
}



footer{
	width: 100%;
	bottom: 0;
}

.socials{
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 3rem;
	padding: 0 2.5rem 2.5rem !important;
}

footer h2{
	font-size: 2.5rem;
	margin-bottom: 2.5rem;
	text-align: center;
}