body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #cfccc0;
}
img{
	height: 100%;
  max-height: 450;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

p{
  font-family: 'Roboto', sans-serif;
  text-align: justify;
  line-height: 1.5;
}


nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #27374D;
	z-index: 1000;
	padding: 10px 0;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}
nav ul li {
	margin: 0 15px;
}
nav ul li a {
	color: white;
	text-decoration: none;
	font-size: 18px;
}
nav ul li a:hover {
	color: #f0a500;
}
#histogram {
  display: block;
  margin-left: auto;
  margin-right: auto;  
}
section:nth-child(even) {
	background-color: #d5d5d5;
}
section:nth-child(odd) {
	background-color: #cfccc0;
}
#content{
	padding-top: 30px;
}
.container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.box {
	width: 45%;
	padding: 20px;
	background-color: #f4f4f4;
	border: 1px solid #ccc;
	text-align: center;
}
h1 {
	font-size: 50px;
	text-align: center;
	text-transform: uppercase;
	text-rendering: optimizeLegibility;
}
section:nth-child(odd) h1.retroshadow {
	color: #2c2c2c;
	letter-spacing: 0.05em;
	text-shadow:4px 4px 0px #cfccc0,7px 7px 0px rgba(0, 0, 0, 0.2);
}
section:nth-child(even) h1.retroshadow {
	color: #2c2c2c;
	letter-spacing: 0.05em;
	text-shadow:4px 4px 0px #d5d5d5,7px 7px 0px rgba(0, 0, 0, 0.2);
}
section {
	min-height: 20vh;
	padding: 25px;
	box-sizing: border-box;
	position: relative;
	overflow: auto;
}
.interactive-wrapper{
	margin: 5vh;
}
#vis{
	margin: 5vh;
}
#static{
  padding-bottom:50px;
}
#interactive {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 40px 20px;
	box-sizing: border-box;
}
#interactive h1 {
	margin-bottom: 10px;
	text-align: center;
}
#interactive .button-container {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	width: 100%;
	max-width: 1200px;
}
#interactive a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	height: 500px;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	color: white;
	background-color: #27374D;
	border-radius: 10px;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s, background-color 0.2s;
	text-align: center;
}
#interactive a:hover {
	background-color: #f0a500;
	transform: scale(1.05);
}
#interactive a:active {
	transform: scale(0.95);
}

/* Position navigation buttons at the bottom middle of the section */
#navigation {
  position: absolute; /* Position relative to the section */
  bottom: 20px; /* Distance from the bottom of the section */
  left: 50%; /* Center horizontally relative to the section */
  transform: translateX(-50%); /* Adjust for centering */
  display: flex; /* Ensure buttons are aligned horizontally */
  gap: 10px; /* Add spacing between buttons */
}

#navigation button {
  padding: 10px 20px; /* Add padding for the buttons */
  font-size: 16px; /* Adjust font size for readability */
  border: none; /* Remove default borders */
  background-color: #27374D; /* Button background color */
  color: white; /* Text color */
  border-radius: 5px; /* Rounded corners for buttons */
  cursor: pointer; /* Change cursor to pointer */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
  transition: background-color 0.2s, transform 0.2s; /* Smooth hover effect */
}

#navigation button:hover {
  background-color: #f0a500; /* Change background color on hover */
  transform: scale(1.1); /* Slightly enlarge button on hover */
}

#navigation button:active {
  transform: scale(0.95); /* Slightly shrink button when clicked */
}
