* {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #231F20;
}

body,html {
    height:100%;
}



#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Footer height */
}



.copyright {
    color: #231F20;
}

.copyright a {
    color: #231F20; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove the underline */
}

.copyright a:hover {
    color:#7d51a0; 
    text-decoration:none; 
    cursor:pointer; 
}

.loading-page {
    background-color: #FFF;
    color: #231F20;
    background-size: contain;
    height: 100vh;
    position: relative;
}

.head-page * {
    background-color: transparent;
}



.typewriter h3 {
    color: #231F20;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid #7d51a0; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation:
      typing 3.5s steps(40, end),
      blink-caret .75s step-end infinite;
  }

  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }

  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
  }
