@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+TAS+Beginner:wght@400..700&display=swap');



body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f5f5f5;
	color: #333;
	
}
header {
	background-color: #FCF6F5;
	color: black;
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-between; /* Align items to the left and right */
	align-items: center;
}
nav {
	display: flex;
	margin-right: 20px; /* Added margin between links */
}
nav a {
	color: black;
	text-decoration: none;
	margin-right: 15px; /* Increased space between links */
	padding: 10px; /* Added padding around links */
	margin-bottom: 5px;
	border-bottom: 1px solid transparent;
	font-family: "Space Mono", monospace;
	font-weight: 400;
	font-style: normal;
}
nav a.selected {
	border-bottom: 1px solid black;
}
.header-item {
	margin-left: auto; /* Push item to the far right */
	font-family: "La Belle Aurore", cursive;
	font-size:40px;
	text-align: right;
}


.center-wrapper {
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
padding-left:20px;
padding-right:20px;

}

.card_title {
	color: #f1e8df;
	background-color: #6a3332;
	font-size: 14px;
	font-family: "Space Mono", monospace;
	font-weight: 700;
	font-style: bold;
	border: 1px solid black;
	width: 40%;
	padding: 10px;
}

.business-card {
width: 640px;
height: auto;
min-width: 300px;
border: 0px solid #755139;
border-radius: 2px;
padding: 20px;
margin-left: 50px;
margin-right: 50px;
box-sizing: border-box;
background-color: #f1ebe4;
-webkit-box-shadow: 0 2px 5px 2px rgba(0,0,0,0.1),0 2px 10px 0 rgba(0,0,0,0.1)!important;
-moz-box-shadow: 0 2px 5px 2px rgba(0,0,0,0.1),0 2px 10px 0 rgba(0,0,0,0.1)!important;
box-shadow: 0 2px 5px 2px rgba(0,0,0,0.1),0 2px 10px 0 rgba(0,0,0,0.1)!important;
transition: box-shadow 0.3s ease;
}

.business-card:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.name {
font-size: 40px;
font-weight: bold;
margin-bottom: 30px;
text-align: left;
color: #333;
font-family: "Space Mono", monospace;
	font-weight: 500;

}

.row {
margin-bottom: 10px;
color: black;
font-family: "Italiana", sans-serif;
font-size: 25px;
letter-spacing: 1.5px;
}

.row label {
font-weight: bold;
color: black;
}

.top_hr {
border-color: #6a3332;
background-color: #6a3332;
border: 0;
height: 4px;
}
.lower_hr {
border-color: #6a3332;
background-color: #6a3332;
border: 0;
height: 1px;
}

.row a {color:black;}
.row a:link { text-decoration: none; }
.row a:visited { text-decoration: none; }
.row a:hover { text-decoration: none; }
.row a:active { text-decoration: none; }


@media screen and (max-width: 575px) {
.header-item { font-size: 24px; }
.row { font-size: 20px; }
.name { font-size: 32px; }
}

@media screen and (max-width: 450px) {
.header-item { font-size: 18px; }
.name { font-size: 26px; }
.row { font-size: 16px; }
}
