*{
	margin: 0;
	padding: 0;
	box-sizing:border-box;
	font-family: "Cormorant Garamond", serif;
}
body{
  	font-family: "Cormorant Garamond", serif;
  	background-color: #abdbe3;
	
}
html{
scroll-behavior: smooth;
}
p{
	color:rgb(85,85,85);
}
a, .btn{
	transition: all 300ms ease;
}
/*NAVIGATION*/
nav, .nav-links{
	display: flex;
}
nav {
	top:0;
	left:0;
	display:flex;
	padding: 15 px 10%;
	justify-content: space-around;
	align-items: center;
	height: 17vh;
	border-bottom: 1px solid#000;
	z-index: 10;
}
.nav-links{
	gap: 2rem;
	list-style: none;
	margin: 10px 20px;
	font-weight:500;
	font-size: 1.5rem;
	cursor:pointer;
}
.section__text__{
	text-align: center;
}
a{
	color: black;
	text-decoration: none;
	text-decoration-color: white;
}
a:hover {
	color: #873e23; 
	text-decoration:none;
	text-underline-offset: 0.5rem;
	text-decoration-color: rgb(181,181,181);

}
.center{
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.logo{
	font-size: 2rem;
}
.logo:hover{
	cursor: default;
}
/*Hamburger menu */

#hamburger-nav {
	display: none;
}
.hamburger-menu {
	position: relative;
	display: inline-block;
}
.hamburger-icon{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 24px;
	width: 30px;
	cursor: pointer;

}
.hamburger-icon span{
	width: 100%;
	height: 2px;
	background-color: black;
	transition: all 0.3 ease-in-out;
}
.menu-links{
	position:absolute;
	top: 100%;
	right: 0;
	background-color: white;
	width: fit-content;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3 ease-in-out;
}
.menu-links a {
	display: block;
	padding: 10px;
	text-align: center;
	font-size: 1.5rem;
	color: black;
	text-decoration: none;
	transition: all 0.3 ease-in-out;
}
.menu-links li {
	list-style: none;
}
.menu-links.open {
	max-height: 300px;
}
.hamburger-icon.open span:first-child{
	tranform: rotate(45deg) translate(10px, 5px);
}
.hamburger-icon.open span:nth-child(2){
	opacity: 0;
}
.hamburger-icon.open span:last-child{
	tranform: rotate(-45deg) translate(10px, -5px);
}
.hamburger-icon span:first-child{
	transform: none;
}
.hamburger-icon span:first-child{
	opacity: 1;
}
.hamburger-icon span:first-child{
	transform: none;
}

/*SECTIONS*/

section {
	padding-top: 4vh;
	height: 96h;
	margin:0 10 rem;
	box-sizing: border border-box;
	min-height: fit-content;
}
#profile{
	display: flex;
	justify-content: center;
	gap: 5rem;
	height:80vh;
}
.section__pic-container{
	display: inline-flex;
	height:600px;
	width:400px;
	margin:auto 0;
}
.section__text{
	font-family: "Cormorant Garamond", serif;
	align-self: left;
	text-align: left;
}
