/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
  :root { --ink: currentColor; --ink-2: moccasin; --ink-3: #4FF8FF; }
  
.fx-elastic {
  font-family: "Courier New", monospace;
  letter-spacing: .08em;
  color: var(--ink-2);
  animation: fx-elastic 2s ease-in-out;
}
@keyframes fx-elastic {
  0%, 100% { transform: scale(1, 1); }
  28% { transform: scale(1.28, .72); }
  44% { transform: scale(.78, 1.24); }
  60% { transform: scale(1.12, .9); }
  74% { transform: scale(.96, 1.05); }
  86% { transform: scale(1.02, .98); }
}
body{
  background: #250925;
  min-height: 100vh;
  margin: auto;
  max-width: 500px;
  width: auto;
  font-family: "Courier New", monospace;
  text-align: center;
  color: moccasin;
  .button {
     background-color: lightblue;
     border: 4px deepskyblue;
     padding: 4px 8px;
     border-radius:13px;
     color: darkolivegreen;
 }

  .button span {
    font-size: 1.2em;
    letter-spacing: 1px;
  }

  .box-button:active {
    transform: translateY(10px);
    }
  .box-button:hover {
    filter: brightness(1.1);
  }


}
