body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
  background: #060410;
  color: #fff;
}

.ec-content {
  padding: 24px;
}

.ec-filler {
  min-height: 2000px;
  margin-top: 48px;
}

.ec-modal {
  display: none;
  inset: 0;
  justify-content: center;
  align-items: center;
  padding: 24px;

  p {
    margin-top: 0px;
  }

  button[data-ec-close] {
    width: 100%;
    margin-top: 48px;
  }
}

.ec-modal__content {
  max-width: 480px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #120d31;
  border: 2px solid #2b206f;
  padding: 24px;
  border-radius: 8px;
}

.ec-modal__overlay {
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.ec-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 24px;
  color: #fff;
  border-radius: 999px;
  border: 2px solid #2b206f;
  text-transform: lowercase;
  text-decoration: none;
  transition: all 0.25s ease-out;
}

.ec-button:hover {
  color: #000;
  background-color: #c5bfed;
}

.ec-button--primary {
  background-color: #120d31;
}

.ec-button--secondary {
  background-color: #120d31;
  border: 2px solid #2b206f;
}
