@import url('https://fonts.googleapis.com/css?family=Fjalla+One');

body, html {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #FFF5EE;
}

@media screen and (max-width: 768px) {
  body {
		align-items: flex-start;
		margin-top: 5rem;
	}
}

.card-wrapper {
	width: 60%;
	height: 60%;
	border-radius: 10px;
	background-color: #FFFAFA;
}

@media screen and (max-width: 768px) {
  .card-wrapper {
		width: 90%;
	}
}

.card-container {
	position: relative;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	height: 50%;
	border-radius: 10px 10px 0 0;
	background-color: #FFD700;
}

@media screen and (max-width: 768px) {
  .card-container {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: auto;
		padding: 1rem 0;
	}
}

.profile-pic {
	position: absolute;
	bottom: -4.5rem;
	left: 3rem;
	width: 250px;
	border-radius: 8px;
}

@media screen and (max-width: 1024px) {
  .profile-pic {
		bottom: -6rem;
		left: 1.5rem;
	}
}

@media screen and (max-width: 768px) {
  .profile-pic {
		position: relative;
		bottom: auto;
		left: auto;
	}
}

.card-container__informations-principal {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 60%;
	color: #FFFAFA;
}

@media screen and (max-width: 768px) {
  .card-container__informations-principal {
		width: 100%;
		margin-top: 1rem;
		text-align: center;
	}
}

.card-container__informations {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: column;
	height: 42%;
	color: #8B4513;
}

@media screen and (max-width: 768px) {
  .card-container__informations {
		border-radius: 0 0 10px 10px;
		background-color: #FFFAFA;
	}
}

.card-container__informations-item, .card-container__informations-about {
	margin: .35rem 0;
	font-family: 'Fjalla One', sans-serif;
	font-size: 2.4rem;
	letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .card-container__informations-item, .card-container__informations-about {
		margin: 0;
		font-size: 2rem;
	}
}

.card-container__informations-about {
	width: 90%;
	padding: .8rem;
	font-family: sans-serif;
	font-size: 1.1rem;
	font-weight: 500;
	text-align: center;
}

.container-icon {
	position: absolute;
	top: 1rem;
	right: 0;
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
	width: 60%;
}

@media screen and (max-width: 1024px) {
  .container-icon {
		top: 9rem;
		right: 1rem;
	}
}

@media screen and (max-width: 768px) {
  .container-icon {
		top: 1rem;
		right: 1rem;
	}
}

.container-icon__item {
	width: 30px;
	height: 30px;
	border: none;
	cursor: pointer;
}

.container-icon__item:nth-child(1) {
	width: 30px;
	height: 30px;
	margin-right: 8px;

	border: none;
	background-image: url(assets/png/codepen.png);
	background-size: 100%;
	background-repeat: no-repeat;

	cursor: pointer;
}

.container-icon__item:nth-child(2) {
	width: 30px;
	height: 30px;

	border: none;
	background-image: url(assets/png/github.png);
	background-size: 100%;
	background-repeat: no-repeat;

	cursor: pointer;
}

.container-icon__item:nth-child(3) {
	width: 40px;
	height: 34px;

	border: none;
	background-image: url(assets/png/twitter.png);
	background-size: 100%;
	background-repeat: no-repeat;

	cursor: pointer;
}

.container-icon__item:nth-child(4) {
	width: 30px;
	height: 30px;
	margin-right: 8px;

	border: none;
	background-image: url(assets/png/facebook.png);
	background-size: 100%;
	background-repeat: no-repeat;

	cursor: pointer;
}

.container-icon__item:nth-child(5) {
	width: 30px;
	height: 30px;

	border: none;
	background-image: url(assets/png/instagram.png);
	background-size: 100%;
	background-repeat: no-repeat;

	cursor: pointer;
}

.container-icon__item:focus{
	outline: none;
}