:root {
	--primary-color: #fffaf1;
	--secondary-color: #2b2b2b;
	--tertiary-color: #272727;
	--quaternary-color: #fff;
}
html {
	box-sizing: border-box;
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	width: 100%;
	overflow: hidden;
}
body::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-radius: 1rem;
}
body::-webkit-scrollbar {
	width: 1.1rem;
	background-color: #f5f5f5;
}
body::-webkit-scrollbar-thumb {
	border-radius: 1rem;
	background-color: #2b2b2be3;
}
.header {
	background-color: var(--primary-color);
	width: 100%;
	padding-top: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.header__img {
	background-image: url(/assets/img/sussana.webp);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 20rem;
	height: 20rem;
	border-radius: 50%;
	border: 2px solid black;
}
.header__h1 {
	text-transform: uppercase;
	font-family: "Josefin Sans", sans-serif, Helvetica;
	color: var(--tertiary-color);
	margin-top: 4rem;
	font-size: 2.5rem;
	margin-bottom: 0;
}
.header__h2 {
	font-family: "Barlow", sans-serif, Helvetica;
	color: var(--tertiary-color);
	text-transform: uppercase;
	font-weight: 500;
	margin-top: 0px;
	font-size: 1.8rem;
	padding-bottom: 3rem;
	text-transform: capitalize;
}

.container--section__footer {
	background-color: var(--secondary-color);
}

.section {
	background-color: var(--secondary-color);
	padding-top: 2rem;
	height: 27rem;
}
.section__h3 {
	color: var(--quaternary-color);
	width: 70%;
	text-align: center;
	margin: 0 auto;
	padding-top: 3rem;
	font-family: "Barlow", sans-serif, Helvetica;
	font-weight: 500;
}
.section__link--portfolio,
.section__link--contact {
	display: block;
	color: var(--quaternary-color);
	border: 1px solid var(--quaternary-color);
	width: 70%;
	margin: 3rem auto 0 auto;
	border-radius: 2rem;
	padding: 1rem;
	text-align: center;
	font-family: "Barlow", sans-serif, Helvetica;
	font-weight: 300;
	text-decoration: none;
}
.section__link--portfolio:hover {
	background-color: var(--primary-color);
	color: var(--secondary-color);
	cursor: pointer;
	transition: 500ms;
}
.section__link--contact:hover {
	background-color: var(--primary-color);
	color: var(--secondary-color);
	cursor: pointer;
	transition: 500ms;
}
.footer {
	background-color: var(--secondary-color);
	padding-bottom: 7rem;
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.footer__icon {
	width: 2rem;
	filter: invert(87%) sepia(2%) saturate(1306%) hue-rotate(331deg)
		brightness(111%) contrast(108%);
}
.footer__icon:hover {
	width: 3rem;
	cursor: pointer;
	transform: scale(1.2);
	transition: 300ms;
}
