*{
    margin: 0;
    padding: 0;
}
body{
  background-color: #ffe4ea;
}
header{
    display: grid;
    grid-template-columns: 75% 1fr;
    background-color: #ebbfc6;
    border: #8e2c3e 4px solid;
    border-radius: 1.1em;
}
h1{
    text-align: center;
    margin: 6%;
    font-size: 4.5em;
    color: #cd7a89;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #8e2c3e;
}
#logo{
    border-radius: 4em;
    height: auto;
    width: 50%;
    padding: 1.3em;
}
details {
  border: 3px solid #8e2c3e;
  border-radius: 10px;
  background-color: #e9b5bf;
  margin: 1.1%;
  padding: 1%;

}
summary{
    font-size: 2em;
    color: #9c3649;
}
#toca{
    font-size: 1.4em;
    color: #9c3649;
    margin-left: 5%;
}
#botones {
  display: flex;
  justify-content: center; /* centra en horizontal */
  gap: 10%; /* espacio entre botones */
  margin-top: 2%;
}
a{
    border: 2px solid #8b2c3b;
    border-radius: 1.3em;
    text-decoration: none;
    color: #9c3649;
    background-color: #e9b5bf;
    height: auto;
    width: 20%;
}
img{
    border-radius: 1.3em;
    width: 100%;
}
footer{
    position: fixed;
    bottom: 3px;
    width: 100%;
    background-color: #e9b5bf;
}