@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
	margin: 5;
	padding: 5;
}

body {
	background-color: #000000;
	color: #ffff;
	margin: 0;
	font-family: 'Poppins', sans-serif;
}

main {
	height: 100vh;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.profile-photo {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	overflow: hidden;
}

.profile-photo img {
	height: 20rem;
}

h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 2px;
}

h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 2px;
}

h1:after {
	content: '|';
	margin-left: 5px;
	opacity: 1;
	animation: pisca .7s infinite;
}

a:link {
	text-decoration: none;
}

@keyframes pisca {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

button {
	font-size: 20px;
	position: relative;
	border-radius: 40px;
	border: none;
	height: 75px;
	width: 390px;
	border: solid;
	text-decoration: none;
	color: #e5e8e8;
	border: 1px solid #f1eeee;
	border-radius: 80px;
	background-color: #4e545c;
	text-decoration: none;
	min-width: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s ease-in-out;
}

button:hover {
	background-color: #000000;
}

.form {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-content: center;
	flex-direction: column;
	font-size: 2rem;
	margin-left: 5vh;
	margin-right: 5vh;
}

.form label,
.form input,
.form textarea,
.form button {
	color: #000000;
	width: 60%;
	font-size: 2rem;
}

.form label {
	color: #ffffff;
	line-height: 1;
	margin-bottom: 1rem;
}

.form inpu,
.form textarea {
	font: inherit;
	padding: 0, 8rem;
	margin-bottom: 3rem;
	scroll-padding-block-start: 5px;
	transition: border-color, box-shadow 0.2s;
}

.form textarea {
	min-height: 8rem;
	resize: vertical;
}

.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
	outline: none;
	border-color: #000;
	box-shadow: 0 0 0 3px #4e545c;
}

.form button {
	font-size: 20px;
	position: relative;
	border-radius: 30px;
	border: none;
	height: 75px;
	width: 390px;
	border: solid;
	text-decoration: none;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 60px;
	background-color: #4e545c;
	text-decoration: none;
	min-width: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s ease-in-out;
}


.form button:hover {
	background-color: #000000;
}

footer {
	width: 100%;
	background-color: #4e545c;
	padding: 8px;
	color: #e5e8e8;
	position: fixed;
	bottom: 0;
	text-align: center;
	font-weight: 400;
}

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

h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 2px;
}

h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 2px;
}

@media screen and (min-width: 640px) {
	body {
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media screen and (min-width: 768px) {
	body {
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media screen and (min-width: 960px) {
	body {
		display: grid;
		grid-template-columns: 1fr;
	}
}