html, body {
    font-family: "Montserrat", sans-serif;
    color: white;
    background-color: black;
    background-image: radial-gradient(circle at center top, #d66eff32 0%, rgba(0, 0, 0, 0) 70%);
    height: 100vh;
}
  
.subtitle {
    color: #ffffff;
    letter-spacing: 10PX;
    align-self: center;
    margin-top: 40px;
    margin-bottom: -10px;
}
  
.title {
    color: #f3e708;
    font-style: italic;
    font-size: 70px;
    text-shadow: 3px 2px #545454;
    text-align: center;
    margin-top: 1px;
    margin-left: -20px;
    margin-bottom: 0;
}
  
body {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0px;
}
  
.box {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-self: center;
    border: 2px solid;
    border-radius: 10px;
    padding: 10px;
    width: 28rem;
    height: 350px;
    transition: 0.2s ease;
}
  
.alphabetButtons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
}
  
.alphabetButtons button {
    font-family: "Montserrat", sans-serif;
    background-color: #d66eff32;
    color: white;
    border: 1px solid #d66eff8f;
    border-radius: 4px;
    padding: 10px 13.5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}
  
.alphabetButtons button:hover {
    background-color: rgba(148, 75, 176, 0.561);
}
  
.alphabetButtons button:disabled {
    background-color: #28143032;
    cursor: not-allowed;
    transition: opacity 0.3s ease;
    opacity: 20%;
}


.terminal {
    font-weight: 600;
    padding: 1rem;
    border-radius: 9px;
    overflow: hidden;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 25px;
  }
  
  .hangman {
    display: flex;
    margin: auto;
    justify-content: center;
    text-align: left;
    font-weight: 600;
    font-size: 25px;
    border-radius: 9px;
  }
  
  .pushable {
    margin-top: 20px;
    position: relative;
    background: transparent;
    padding: 0px;
    border: none;
    cursor: pointer;
    outline-offset: 4px;
    outline-color: deeppink;
    transition: filter 250ms;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    visibility: hidden;
  }
  
  .shadow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: hsl(222, 18%, 18%);
    border-radius: 8px;
    filter: blur(2px);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  }
  
  .edge {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(
      to right,
      hsl(248, 39%, 39%) 0%,
      hsl(248, 39%, 49%) 8%,
      hsl(248, 39%, 39%) 92%,
      hsl(248, 39%, 29%) 100%
    );
  }
  
  .front {
    font-family: "Montserrat", sans-serif;
    display: block;
    position: relative;
    border-radius: 8px;
    background: hsl(248, 53%, 58%);
    padding: 8px 16px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  }
  
  .pushable:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  }
  
  .pushable:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
  }
  
  .pushable:hover .shadow {
    transform: translateY(4px);
  }
  
  .pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
  }
  
  .pushable:focus:not(:focus-visible) {
    outline: none;
  }