body {
	background-color: #282828;
	margin: 0;
	color: white;
	text-align: center;
	font-weight: 100;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.content {
	width: 100vw;
	height: 100vh;
	display: table-cell;
	vertical-align: middle;
}

.profile img.profile {
	width: 192px;
	height: 192px;
	border-radius: 50%;
	box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.profile h1#title {
	font-size: 22px;
}

.profile #textTypeWriter {
	text-align: center;
	color: white;
	font-weight: 100;
	font-size: 15px;
	font-family: "Courier New", Courier, monospace;
}

.icon {
	width: 16px;
	height: 16px;
	background-color: white;
	padding: 10px;
	margin: 0 4px;
	border-radius: 50%;
	transition: 0.2s ease-in-out;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.icon:hover {
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.3);
}
.sendMail {
	margin-right: 4px;
	width: 16px;
}

#messageSubmit {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#heart {
	color: crimson;
}
.down,
.end #up {
	font-size: 12px;
	width: 100%;
	margin-top: -30px;
	text-align: center;
	animation-name: bounce;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

.end #up {
	margin-top: 60px;
	margin-bottom: -60px;
}

@keyframes bounce {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
	50% {
		transform: translateY(-30px);
	}
}

.section h1:not(#title) {
	letter-spacing: 10px;
	font-weight: 500;
	font-size: 24px;
}

.section p:not(.down) {
	width: 80%;
	margin: 15px auto;
	line-height: 25px;
	text-align: justify;
	font-size: 14px;
}

.links {
	text-decoration: none;
}
.container {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 50px;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.card {
	padding: 25px;
	border-radius: 10px;
	box-sizing: border-box;
	flex: 0 1 calc(100% - 20px);
	margin: 10px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	transition: 0.2s ease-in-out !important;
}
.card:hover {
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.3);
}

.card h3 {
	font-size: 15px;
}

.section .card p {
	width: calc(100% - 20px);
	font-size: 13px;
	text-align: center;
}

.skills {
	margin-top: 100px;
}

.skills .card {
	padding: 20px 0px;
	display: flex;
	vertical-align: middle;
	justify-content: center;
	align-items: center;
}
.skills img {
	margin: 0px 20px;
	width: 22px;
	float: left;
}

.skills .card .card_text {
	width: calc(100%);
	margin: 0px 20px 0px 0px;
	display: inline-block;
}

.skills .card .card_text h3,
.skills .card .card_text p {
	margin: 0px 0px;
	text-align: left;
	font-size: 13px;
}
.achievements .card {
	padding: 25px 25px;
}

.achievements h4,
.achievements p {
	margin: 0px auto !important;
	text-align: center !important;
}

.contact form {
	width: 80%;
	text-align: left;
	margin: 0 auto;
}

label {
	margin: 5px auto;
	margin-top: 20px;
	text-align: left;
	display: block;
	font: 1rem "Fira Sans", sans-serif;
}

input,
textarea {
	box-sizing: border-box;
	width: 100%;
	margin: 5px 0px !important;
	background-color: transparent;
	border: 1px solid gray;
	height: 30px;
	padding: 0px 10px;
	color: white;
	transition: 0.3s ease-in-out;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

textarea {
	padding: 10px;
	height: auto;
}

input:focus,
textarea:focus {
	border: 1px solid white;
	outline: none;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.3);
	transition: 0.3s ea;
}

button[type="submit"] {
	border: none;
	cursor: pointer;
	background-color: white;
	color: black;
	width: 150px;
	height: 35px;
	transition: 0.3s ease-in-out;
	margin: 15px calc(50% - 75px) !important;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

button[type="submit"]:focus {
	border: 1px solid white;
	background-color: transparent;
	color: white;
	outline: none;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.3);
}

a {
	color: lightgray;
	text-decoration: none;
}

.end .content p {
	text-align: center;
	margin: 0 auto;
}

.text-light {
	margin-top: -2px !important;
	opacity: 0.6;
}