* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Libre Caslon Text', serif;
}

html {
	font-size: 0.625em;
	/* Utilizar agora REM para todos os font-size. Tornará os textos das páginas adaptativo ao tamanho de letra que o usuário configurar no navegador. Para transformar 15px em rem, basta mover a virgula para esquerda: 1,5rem.*/
	scroll-behavior: smooth;
}

li {
	list-style-type: none;
}

#body-container {
	padding: 20px;
	width: 90%;
	margin: 0 auto;
}

#site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
}

i {
	font-size: 2rem;
}

.header-links {
	font-size: 1.2rem;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
	display: inline-block;
}

#site-main {
	padding: 20px;
}

.main-title {
	padding-bottom: 100px;
	padding-top: 60px;
	border-bottom: 1px solid lightgrey;
	font-size: 5.5rem;
	font-weight: normal;
}

#options-container {
	font-size: 4rem;
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
}

.option::after {
	content: "/";
	padding-left: 10px;
	padding-right: 15px;
}

.option:last-of-type::after {
	content: "";
	padding: 0;
}

.option-link {
	position: relative;
}

.option-link:after {
	content: "";
	position: absolute;
	top: 85%;
	left: 0;
	width: 0;
	border-bottom: 1px solid;
	transition: 1s;
}

.option-link:hover::after {
	content: "";
	position: absolute;
	top: 85%;
	left: 0;
	width: 100%;
	border-bottom: 1px solid;
}

#galery {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.galery-item {
	width: 30%;
	padding-top: 50%;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.galery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	transition: 1s;
}

figure::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: RGBA(0, 0, 0, 0.4);
}

figcaption h1 {
	margin: 10px 0;
}

figcaption p {
	font-size: 1.5rem;
}

figcaption {
	position: absolute;
	bottom: -50%;
	left: 25px;
	right: 25px;
	color: #fff;
	transition: 1.5s;
	display: block;
	z-index: 99;
	visibility: hidden;
}

figure:hover img {
	transform: scale(1.2);
}

figure:hover figcaption {
	bottom: 50px;
	visibility: visible;
}