.screen {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100vh;
  display: flex;
  padding: 0px 10px 0px 10px;
}

.top-block {
  flex-flow: column;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.bottom-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 20px;
  display: flex;
}

.logo{
  width: 100px;
  height: auto;
}

.heading {
  font-family: Rethink Sans, sans-serif;
  font-weight: 500;
  text-align:center;
  margin: 10px 0px;
}

.heading.h6 {
  color: #a8a8a8;
  font-weight: 400;
    margin: 5px 0px;

}

.button {
  text-align: center;
  background-color: #000;
  border-radius: 10px;
  margin: 10px 20px;
  padding: 20px;
  cursor:pointer;
}

.button.white {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
}

.text-block {
  color: #fff;
  text-align: center;
  font-family: Rethink Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block.black {
  color: #000;
}

.div-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 479px) {
  .screen {
    flex-flow: column;
    height: 100vh;
    display: flex;
  }
}
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* so list grows downward */
  gap: 1rem;
  overflow-y: auto; /* allow scrolling if list is long */
  padding-bottom: 6rem; /* space so content never hides behind the button */
}

#confirmation-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1); /* optional nice top shadow */
}
a.button,
a.button:link,
a.button:visited {
  text-decoration: none !important; /* remove underline */
  color: inherit !important;        /* keep your custom text color */
  outline: none !important;         /* remove blue border highlight */
}

a.button:focus,
a.button:active {
  outline: none !important;         /* remove the blue outline when clicked */
  box-shadow: none !important;      /* remove Webflow’s default focus ring */
}

.text-block {
  text-decoration: none !important; /* just to be extra safe */
}

#names-container{
  width:90%;
}