  :root {
    --black: #0e1011;
    --dark-gray: #272a2c;
    --light-gray: #5e6264;
    --very-light-gray: #9ea3a5;
    --white: #c8d7e2;
    --red: #E62727;
    --orange: #DC5F00;
    --yellow: #ffce0a;
    --green: #00ff9d;
    --dark-green: #1d694a;
    --blue: #0077ff;
    --dark-blue: #242370;
    --purple: #572679;
  }

  body {
    margin: 0;
    font-family: monospace;
    background-color: var(--black);
    color: var(--white);
  }

  .nav {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
  }

  .logo {
    font-size: 2em;
    line-height: 1.2;
    text-align: center;
    margin-top: 10px;
    background-color: var(--white);
    color: var(--black);
    padding: 10px 30px 10px 30px;
  }

  .fill {
    font-size: 1.5em;
    line-height: 1;
    text-align: center;
    align-self: right;
    align-items: right;
    margin-top: 10px;
    background-color: var(--black);
    color: var(--white);
    overflow: hidden;
    border: 2px solid var(--white);
    padding: 10px 0px 10px 0px;
    margin-left: 30px;
    height: 3.8rem;
    background: var(--dark-gray);
    max-width: 25rem;
    width: 25rem;
  }

  .links {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 5px;
    font-size: 0.9em;
    align-items: center;
  }

  .link {
    background-color: var(--light-gray);
    color: var(--white);
    text-decoration: none;
    padding: 2px 5px;
  }

  .link:hover {
    text-decoration: underline;
  }

  .boxes {
    display: flex;
    flex-direction: column;
    margin: 20px;
    gap: 10px;
    width: 10rem;
  }

  .boxes h1 {
    display: block;
    padding: 10px 20px 10px 20px;
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    animation: gradient_animate 0.5s ease-in-out 0s infinite;
  }

  .boxes a {
    display: block;
    padding: 5px 10px 5px 10px;
    background-color: var(--white);
    color: var(--blue);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
  }

  main {
    max-width: 50rem;
    margin: 0 auto;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
    gap: 20px;
    margin: 20px;
  }

  .grid a {
    display: block;
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    position: relative;
    overflow: hidden;
  }

  .grid a img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
  }

  .grid a .label {
    padding: 15px;
  }

  .grid a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 100%;
    width: 80px;
    height: 4px;
    background-color: var(--black);
  }
