* {
    font-family: "Google Sans", sans-serif;
}

p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

/* Header */
.indexHeader {
    background-color: #b1ddf2;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.indexHeader img {
    width: 5rem;
    height: 6rem;
}

.indexHeader button {
    background-color: #bad2f6;
    border-color: #19323f;
}

/* Main */
main {
    display: flex;
    flex-direction: column;

    margin-top: 6rem;
    background-color: #ffffef;
}

.mainSuperior article {
    margin: 0.3rem;
    padding: 0.3rem;
}

.mainSuperior img {
    width: 100%;
    height: auto;
    display: block;
    padding: 1rem 0rem;
}

.mainSuperior h1 {
    color: #f360c2;
}

.mainSuperior p {
    text-align: justify;
}

.containerSobreMiTexto {
    display: grid;
}

.sobreMiHeader {
    display: grid;
    align-items: center;

    margin: 0.3rem;
    padding: 1.5rem;
}

.mainSobremi img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.containerSobreMi1{
    margin-top: 1rem;
}

/* MainCard*/
.mainCardAlbum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 2rem 1rem;
    justify-items: center;
}

.mainCardTitulo {
    margin: 1rem;
}

.mainCardAlbum h3 h4 p {
    margin: 0.5rem;
    line-height: 30px;
}

.mainCardAlbum h4 {
    font-size: 20px;
    line-height: 15px;
    font-weight: 400;
}

.mainCardAlbum div {
    max-width: 20rem;
    border: 2px solid #a4dfff;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 1rem;
    box-sizing: content-box;
}

.cardAlbum:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cardAlbum img {
    width: 100%;
    border-radius: 7px;
    margin-bottom: 1rem;
}

.cardAlbum p {
    margin-top: 1rem
}

.rankingConciertosTitulo {
    padding: 1rem;
    text-align: center;

}

/* Carousel */
.carousel-control-prev-icon {
    background-color: #a4dfff;
    border-radius: 50%;
}

.carousel-control-next-icon {
    background-color: #a4dfff;
    border-radius: 50%;
}

.carousel-img {
    height: 30rem;
    object-fit: contain;
}
.carousel-caption{
    margin-right: 2rem;
    margin-left: 2rem;
}


/* footer */
.footerInfo{
    background-color:#92bc7a;
}
.footerInfo article {
    text-align: center;
}

.footerInfo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerInfo a {
    padding: 1rem;
    justify-content: space-between;
    color: #456a3f;
    text-align: center;
}

.footerInfo h3 {
    padding-top: 0.5rem;
    font-size: 16px;
    height: auto;
    color: #d1fcc9;
}

/* Contacto*/
.contactoMail {
    color: #d1fcc9;
    margin-bottom: auto;
    padding: 0.3rem;
}

/* media queries*/
/*iPad*/
@media (min-width: 500px) {
    .sobreMiHeader {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobreMiHeader img {
        object-fit: cover;
        padding-bottom: 1rem;
    }

    .containerSobreMiTexto {
        display: grid;
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 20px;
    }

    .carousel-item img {
        height: 70rem;
    }
}

/*Desktop*/
@media (min-width: 800px) {

    .sobreMiHeader img {
        max-height: 35rem;
    }

    .carousel-item img {
        height: 70rem;
    }

    .mainCardAlbum article {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .card5 {
        grid-area: 2 / 2;
    }
    .card6 {
        grid-area: 2 / 3;
    }
    .card7 {
        grid-area: 2 / 4;
    }
    .card8 {
        grid-area: 2 / 5;
    }
}