/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}


/* Estilos generales */
html {
  background-color: #3f3f3f;
  color: #cccccc; /* Gris claro */
  font-family: "Comfortaa Light", Verdana, sans-serif;
}

body {
  background-color: grey;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

main {
  max-width: 800px;
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #000000; /* Texto negro */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#tribute-info {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#image {
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

#img-caption {
  text-align: center;
  font-size: 1rem;
  font-weight: lighter;
  margin-top: 10px;
}

section {
  text-align: left;
  margin: 20px 0;
}

section p {
  font-size: 1rem;
  font-weight: lighter;
  margin-bottom: 15px;
  text-align: center;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  font-size: 1rem;
  font-weight: lighter;
  margin-bottom: 10px;
}

footer {
  font-size: 1rem;
  font-weight: lighter;
  text-align: center;
  margin-top: 20px;
}

#author {
  text-align: right;
  margin-top: 0;
}

#author-1 {
  margin-bottom: 0;
  font-style: italic;
}
