:root {
	--text-color: #333;
	--color-light: #C7E1BA;
	--color: #628B61;
	--color-dark: #397249;
}
html {
		scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
body {
		color: var(--text-color);
    font-family: Open Sans, sans-serif;
    //font-size: 16px;
    //line-height: 135%;
		margin: 0px;
}
header {
		color: var(--color-dark);
		font-family: Trebuchet MS, sans-serif;
		font-size: 1.1rem;
		font-weight: bold;
    background-color: var(--color-light);
		padding-top: 1.0rem;
    padding-bottom: 1.0rem;
		margin-bottom: 0.5rem;
}
article {
	
}
section {
		max-width: 64rem;
		margin-left: auto;
    margin-right: auto;
	  padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
footer {
    margin-top: 0.5rem;
    border-top: 1px solid #ddd;
		background-color: #f0f0f0;
    padding-top: 1.9rem;
    padding-bottom: 1.9rem;
}
.container {
		position: relative;
		max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
		padding-left: 10px;
		padding-right: 10px;
}
h1 {
	  margin-top: 0;
    margin-bottom: 1.0em;
		font-family: Trebuchet MS, sans-serif;
    font-size: 2.3rem;
    font-weight: bold;
    //line-height: 2.6rem;
}
h2 {
	  margin-top: 0;
    margin-bottom: 1.0em;
		font-family: Trebuchet MS, sans-serif;
    font-size: 1.7rem;
    font-weight: bold;
    //line-height: 1.9rem;
}
.hero {
		//text-align: center; 
		margin-left: -10px;
		margin-right: -10px;
    padding: 80px;
    position: relative;
		background-image: url('/images/cover.jpg');
		
		background-repeat: no-repeat;
		//background-attachment: fixed;
		background-size: cover;
		background-position: center;
}
.hero-inset {
		width: 33%;
		color: white;
		background-color: var(--color);
		padding: 20px;
		border: 7px solid white;
}
@media screen and (max-width: 1000px) {
	.hero {
		padding: 40px;
  }
	.hero-inset {
		width: 50%;
	}
}
@media screen and (max-width: 400px) {
	.hero {
		padding-left: 7px;
		padding-right: 7px;
  }
	.hero-inset {
		width: calc(100% - 54px);
	}
}
#NameOfTheDay {
	width: calc(100% - 40px);
	font-size: 1.1rem;
	padding: 8px 15px;
	border: 2px solid var(--text-color);
	border-radius: 7px;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.button {
  display: inline-block;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 15px;
  border: 2px solid white;
  border-radius: 7px;
  background-color: var(--color-dark);
	
	transition: all 0.4s ease;
}
.button:hover {
	color: var(--text-color);
  background-color: var(--color-light);
}
.share-bar {
		margin-top: 0.5rem;
    margin-bottom: 1.0rem;
}
.caption {
		margin-top: .5rem;
		font-style: italic;
    margin-bottom: 0;
}
.share-list {
		margin-top: .5rem;
    margin-bottom: .5rem;
}
.share-list li {
		background-color: #397249;
}
.share-list li a {
		color: white;
		font-size: 1.3rem!important;
		text-decoration: none;
		height: 4.25rem;
		width: 4.25rem;
		display: flex;
		justify-content: center;
		align-items: center;
}
.share-list li a:hover {
		opacity: 0.7;
}
.details-cont {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px;
		margin-bottom: 20px;
}
details, .details {
		flex-basis: 300px;
		flex-grow: 1.1;
}
.link-list {}
.link-list li {
		font-size: 0.8rem;
		border-radius: 5px;
		background-color: #f0f0f0;
		padding: 5px;
}
.link-list li:hover {
		background-color: #ddd;
}
.link-list li a {
		color: var(--text-color);
		text-decoration: none;
}
.link-list li a:hover {
		text-decoration: underline;
}