body {
  background: rgb(238, 238, 238);
  padding-top: 1em;
  height: 100%;
  font-family: "ProximaNova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: "ss05" 1, "ss06" 1, "ss09" 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center items horizontally */
  gap: 1em; /* Adjust the gap between elements */

}

.step {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center stretch; /* Center items horizontally */
  gap: 1em; /* Adjust the gap between items */
}

.stepitem {
  border-radius: 0.5em;
  background-color: #D8DADF;

  border-width: 1em;
  width: fit-content;
  padding:1em;
}

sub{
  line-height:0;
}

.componentContainer {
  display: flex;
  /* or inline-flex */
  flex-direction: row;
  justify-content: center;
}



* {
  margin: 0;
  padding: 0;
}



.discs {
  float: left;
}

.discs li {
  background-size: cover;
  width: 9em;
  height: 9em;
  display: block;
  cursor: move;
  float: left;
  background-color: #D8DADF;
  margin: 0 1em 1em 0;
  overflow: hidden;
  border-radius: 0.5em;
}

.discs li span {
  font-weight: bold;
  color: black;
  text-shadow:
    1px 1px 0 #FFF,
    -1px 1px 0 #FFF,
    -1px -1px 0 #FFF,
    1px -1px 0 #FFF;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#topnav{
  box-sizing: border-box;
  position: absolute;
  top: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items:stretch;
  width: 100%;
  padding: 1em;
}


/* Styles for the modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: white;
  margin: 20% auto;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 600px;
}
#faqBtn {
  background-color: #D8DADF;
  color: black;
  font-weight:bold;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}