/*:root {
  --dashwhite: #ffffff;   
  --dashorange: #fcb679;
  --dashblue: #c9efff;
  --dashgreen: #caff9e;
  --dashdarkblue: #2c7c9e;
}*/

/* Basic styles for the body and html */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Futuristic font and text alignment/spacing styles */
h1 {
  margin: 10px;
  font-family: 'Bungee', sans-serif;
  color: var(--dashwhite);
  font-size: 6em;
  position: relative;
  float: left;
  text-align: left;
  line-height: 1.0;
  z-index: 2;
}

p {
  color: var(--dashdarkblue);
  font-size: 2em;
}

.datafoot {
  font-family: 'Bungee', sans-serif;
  color: var(--dashwhite);
  font-size: 2em;
  position: absolute;
  right: 15px;  /* 10px from the left */
  bottom: 15px;   /* 15px from the top */
  text-align: left;
  line-height: 1.0;
  z-index: 2;
}

.datafootleft {
  font-family: 'Bungee', sans-serif;
  color: white;
  font-size: 2em;
  position: absolute;
  left: 15px;  /* 10px from the left */
  bottom: 15px;   /* 15px from the top */
  text-align: left;
  line-height: 1.0;
  z-index: 2;
}

.plottitle }
  margin: 0px;
  padding: 0px;
  line-height: 30px;
}

/* Each section fills the entire height of the viewport */
.section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  z-index: 1;
}


/* Section 3 with jagged top edge */
.section-3 {
  background-color: var(--dashgreen)
}

svg {
  fill: var(--dashorange);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* Button styles */
.button-container {
  float: left;
  text-align: center;
  top: 100px;
  left: 10px;
  width:80%;
  height: 70vh;
  z-index: 3; /* Ensure buttons are above the background */
}

.para-container {
  position: absolute;
  top: 100px;
  left: 90px;
  width:80%;
  height: 90vh;
  z-index: 3; /* Ensure buttons are above the background */
}

.small-img {
	width: 95%;
}

.button {
  padding: 7px;
  width: 50%;
  margin: 20px;
  background-color: var(--dashwhite);
  border: 2px solid var(--dashwhite);
  border-radius: 10px; /* Rounded corners */
  text-align: left;
  font-family: 'Bungee', sans-serif;
  font-size: 2em;
  color: var(--dashorange);
}

.getter {
  float: right;
  padding: 9px;
  width: 80px;
  height: 30px;
  margin: 5px;
  background-color: var(--dashorange);
  border: 1px solid var(--dashorange);
  border-radius: 10px; /* Rounded corners */
  text-align: center;
  line-height: 10px; /* Vertical center */
  font-family: 'Bungee', sans-serif;
  font-size: 0.8em;
  text-decoration: none;
  color: var(--dashwhite);
}

.mini-button {
  float: left;
  width: 90px;
  height: 90px;
  margin: 10px;
  background-color: var(--dashwhite);
  border: 2px solid var(--dashwhite);
  border-radius: 10px; /* Rounded corners */
  color: var(--dashorange);
}

@media only screen and (max-width: 900px) {
  .button-container {
	width: 95%;
    top: 150px;
	left: 5%;
  }
  
  .para-container {
	top: 65px;
	left: 20px;
  }
  
  .button {
    width: 100%;
    padding: 7px;
	font-size: 2em;
	line-height: 0.9;
	margin: 10px;
  }
  
  .mini-button {
    width: 45px;
	height: 45px;
	margin: 5px;
  }
  
  .plottitle {
    margin: 0px;
    padding: 0px;
    line-height: 30px;
	font-size: 0.5em;
  }

  h1 {
	font-size: 2em;
  }
  
  p {
	font-size: 1em;
  }
  
  .datafoot {
	float: left;    
	font-size: 1em;
	display: none
  }
  
  .datafootleft {
	float: left;
    font-size: 1em;
  }

  .small-img {
	width: 90%;
  }

  .getter {
    padding: 5px;
    width: 50px;
    height: 20px;
    margin: 2px;
    border-radius: 7px; /* Rounded corners */
    line-height: 10px; /* Vertical center */
    font-size: 0.4em;
  }

}