html,
body {
	margin: 0;
	padding: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
	font-size: 1.1em;
    line-height: 1.66em;
}

a,
a:visited {
	color: #355f65;
	text-decoration: none;
	
	transition: 0.2s;
}

a:hover {
	color: #338995;
}

main {
	width: 75%;
	max-width: 1024px;
	margin: auto;
}

h1 {
	font-size: 2.75em;
    line-height: 1em;
}

.center {
	text-align: center;
}

.toggle-btn {
	color: #878787;
	font-size: 0.85em;
	cursor: pointer;
}

.toggle-btn:after {
	content: '\f078';
    display: inline-block;
    margin-left: 7px;
	font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    font-weight: 600;
	
	transition: 0.3s;
}

.toggle-btn.active:after {
    transform: rotate(180deg);
}

.icon-buttons a:hover {
	transform: scale(1.1,1.1);
}

.toggle-content {
    
}

.site-header {
	margin: 30px 0 60px 0;
    border-bottom: 1px rgba(0,0,0,0.1) solid;
	text-align: center;
}

.schedule {
	margin: 30px 0;
}

.schedule header {
	text-align: center;
}

.schedule article {
	display: grid;
	grid-template-columns: 10% 1fr;
	column-gap: 30px;
  	align-items: center;
	border-bottom: 1px rgba(0,0,0,0.1) solid;
}

.schedule article .date {
	color: #999;
	text-align: center;
}

.calendar {
	display: block;
	margin: 30px auto;
}




.site-footer {
	margin: 60px 0;
	text-align: center;
}