body{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(246, 246, 246, 0.7),rgba(246, 246, 246, 0.7)), url(https://lh4.googleusercontent.com/68NSB_iqMcvo6owP46eROxZALhbVXaaX-WcVrTLGvJjzH5TALeM81BxqerfPsg2YeEA=w2400);
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0;
	padding: 0;
}
nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 200px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: #000000;
	text-decoration: none;
	font-size: 25px;
    font-style: Georgia;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #000000;
	display: block;
	margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
*,
*;::before,
*;::after{
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}
.section{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.container{
	width: 100%;
	max-width: 70rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.accordion-item{
	background-color: rgb(231, 221, 209);
	size: 30cm;
	border-radius: .3rem;
	margin-bottom: 1rem;
	padding: 1rem;
	box-shadow: .5rem 2px .5rem rgba(0, 0, 0, 0.7);
}
.accordion-link{
	color: rgb(0, 0, 0);
	font-size: 20px;
	text-decoration: none;
	background-color: rgb(231, 221, 209);
	width: 100%;
	padding: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.answer{
	max-height: 0;
	overflow: hidden;
	position: relative;
	background-color: linear-gradient rgb(241, 240, 238);
}
.answer::before{
	content: "";
	position: absolute;
	width: .6rem;
	height: 90%;
	background-color:linear-gradient rgb(241, 240, 238);
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.answer p{
	font-size: 20px;
	color: #000000;
	padding: 2rem;
	text-align: center;
}
.accordion-item:target .answer{
max-height: 20rem;
}
ion-icon {
  color: rgb(190, 178, 160);
}
@keyframes transitionIn {
	from {
		opacity: 0;
	}

	to{
		opacity: 1;
	}
}
.container {
	animation: transitionIn 0.75s;
}
