@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&family=Nanum+Gothic&display=swap');

body {
  background-color: black;
  color: white;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

h3 {
  font-family: "Cinzel", serif;
  color: #e00606
}

.navbar-custom {
  font-family: "Cinzel", serif;
  background-color: black;
  font-size: 20px;
}

.nav-link {
  color: #e00606 !important;
}

h4 {
  font-family: "Gentium", serif;
  color: #85929E;
  font-size: 28px;
}



.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  
  .button.before::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    width: 80%;
    height: 40%;
    background-image: linear-gradient(to bottom, #f4feff, transparent);
    opacity: 0.75;
  }
  
  .button.after {
    position: relative;
    z-index: 0;
    border: 1px solid #e00606;
    border-radius: 8px;
    padding: 8px 16px;
    min-width: 8em;
    background-image: linear-gradient(180deg, #e22f2f, #830202 62%, #d31d1d);
    box-shadow: inset 0 1px 0px rgba(255, 255, 255, 0.2), inset 0 -1px 0px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2);
    font-family: "Roobert", sans-serif;
    font-weight: 500;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    transition-property: border-color, transform;
    transition-duration: 0.2s;
    will-change: transform;
  }
  @media (hover: hover) {
    .button.after:hover {
      transform: scale(1.04);
    }
  }
  .button.after:active {
    border-color: #830202;
    transform: scale(0.98);
  }
  .button.after::before, .button.after::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 7px;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.2s;
  }
  .button.after::before {
    background-image: linear-gradient(180deg, #db8e8e, #e00606 62%, #d31d1d);
    box-shadow: inset 0 1px 0px rgba(255, 255, 255, 0.2), inset 0 -1px 0px rgba(0, 0, 0, 0.2);
  }
  @media (hover: hover) {
    .button.after:hover::before {
      opacity: 1;
    }
  }
  .button.after::after {
    background-image: linear-gradient(180deg, #830202, #830202 38%, #d31d1d);
    box-shadow: inset 0 1px 1px #830202;
  }
  .button.after:active::after {
    opacity: 1;
  }
  
  .button-label {
    font-style: italic;
    color: #c0c0d8;
  }