/* comment for code for css of balance_ee */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #003049;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .container {
    background: #fdf0d5;
    padding: 20px;
    border-radius: 15px;
    border-style: dashed;
    border-color: darkgoldenrod;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 350px;
    width: 90%;
    animation: fadeIn 1.2s ease;
  }

  h1 {
    color: #333;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1.7em;
    text-align: center;
  }

  .link {
    display: block;
    background: #780000;
    color: white;
    text-decoration: none;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .link:hover {
    transform: scale(1.05);
    background: #c1121f;
  }

  a:visited {
    color:#7F4EA6;
  }

  a:hover {
    color: #F78464;
  }

  .library {
    text-transform: uppercase;
    letter-spacing: 1em;
  }

  .womb {
    font-style: italic;
    font-weight: 600;
  }

  .energy {
    font-style:unset;
    font-weight:bold;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }