

html {
  height:100%;
  font-family: 'Courier New', Courier, monospace, sans-serif;
  color: #ffffff;
}

html::-webkit-scrollbar {
    display: none;
}

body {
  height: 100%;
  min-height:100vh;
  margin: 0px;
  margin-top:50px;
  background-color:#3F32FF ;
  /*added flex functionality for footer*/
  display: flex;
  flex-direction:column;
}

main {
  width:90%;
  margin-left:auto;
  margin-right:auto;
  flex:1;
  border:2px;
  border-style:solid;
}

main hr {
  color:white;
  width:40%
}

.content {
  padding-left:10%;
  padding-right:10%;
}

.main-title {
  font-size: 11vmin;
  font-weight: 700;
  text-align:center;
  text-wrap: pretty;
  padding:20px;
  padding-bottom: 80px; /*padding covers the section titles too*/
  max-width:1000px;
  margin-left:auto;
  margin-right:auto;
  /*add stickiness*/
  position: sticky;
  background: #3F32FF;
  border:0px solid #ffffff;
  top:0px;
  z-index:1;
}

.content-item {
  padding-top:30px;
  font-size:3.5vmin;
}

.sticky-heading {
  position: sticky;
  top: 50px; /* Adjust if you have a fixed header */
  background: #3F32FF; /* Or match your page background */
  z-index: 1;
  padding: 10px 0px 10px 0px; /* top, right, bot, left*/
  margin-top: 0px;
  /*border-bottom: 1px solid #eee;*/
}




/* ---- Footer ---- */

footer {
  position:fixed;
  bottom:0;
  width:100%;
  background-color:  #3F32FF;
  color: #ffffff;
  padding:5px;
  /* flex box for menu items*/
  display:flex;
  flex-direction:row;
  justify-content: flex-end;
}

footer a {
  color: #FCE7C8;
  text-decoration: none;
}

footer a:hover {
  color: #c8d9ff;
  text-decoration: underline;
}

.menu-item {
  display: inline-block;
  margin-left:auto;
  margin-right:10px;
  padding-right:10px;
}