* {
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.wrapper {
    display: grid;
    padding: 20px;
    gap: 1em;
    background-color: aliceblue;
    max-width: 80vw;
    margin: auto;
}
.centrado {
    place-items: center;
}

.header {
    display: grid;
    text-align: center;
    width: 100%;
}

.content {
    display: grid;
    width: 100%;
    gap: 1em;
}
#recuerdos {
    display: grid;
    gap: 1em;
}
img {
    margin: auto;
    width: 30vw;
    border: 2px solid rgb(186, 217, 252);
    border-radius: 2px;

}
.form-grid {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 1em;
    width: 80%;
}
#return {
    width: 40px;
}
.ancho {
    grid-column: 1/-1;
}
.oculto {
    width: 0px;
    height: 0px;
}
label {
    font-style: italic;
}
input {
    width: 100%;
    border-radius: 2px;
}

.boton {
    font-weight: 600;
    font-size: large;
    border-radius: 4px;
    background-color: cornflowerblue;
}
.boton:hover {
    cursor:pointer;
}
img {
    transition: ease 0.4s;
}
img:hover {
    transform: scale(1.2);
}
#album {
    display: grid;
    place-items: center center;
}

.cancion {
    display: grid;
    place-items: center center;
}