/* Reset of styles and fonts */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Style of the page body */
body {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    justify-content: center;
    align-items: center;
}


/* Header related */
header {
    background-color: #f9e5e5;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

header h1 {
    font-family: 'Lisu Bosa', sans-serif;
    font-weight: 800;
    font-size: 50px;
    text-align: left;
}

header h3 {
    font-family: 'Lisu Bosa', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    text-align: left;
    margin-left: 30px;
}

header div {
    font-size: 9px;
}

header a {
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #f9e5e5;
    padding: 10px;
    margin-top: 20px;
}

footer p {
    color: #a87b7b;
}
span.copy-link {
  cursor: pointer;
  margin-left: 6px;
  font-size: 1.1em;
  color: #666;
  transition: color 0.2s;
}
span.copy-link:hover {
  color: #007bff; /* azul tipo link */
}
span.copied-msg {
  display: inline-block;
  margin-left: 5px;
  font-size: 0.9em;
  color: #28a745; /* verde éxito */
  opacity: 0;
  transition: opacity 0.2s;
}
span.copied-msg.visible {
  opacity: 1;
}
