/*Phones*/
@media (max-width: 819px) {

    #container_winx_shrine {

        width: 95%;
        box-sizing: border-box;
        padding: 0 2em;
    }
    

    #crushes > div, #winx_creators > div {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #crushes img, #winx_creators img {

        width: 50%;
    }

    .winx_summary {

        width: 75%;
    }
    
}

/*Tablets*/
@media (min-width: 820px) and (max-width: 1399px) {

    #container_winx_shrine {

        width: 85%;
        box-sizing: border-box;
        padding: 0 2em;
    }

    #crushes img, #winx_creators img {

        align-self: center;
    }

    #crushes > div, #winx_creators > div {

        display: flex;
        flex-flow: row wrap;
    }


    .winx_summary {

        width: 45%;
}

}

/*Musa image*/
@media (max-width: 1032px) {

    #winx_songs {

        display: flex;
        flex-direction: column;
    }

    main section:nth-child(3) img {

        order: 3;
        align-self: flex-end;
    }
}

/*PCs*/
@media (min-width: 1400px) {

    #container_winx_shrine {

        width: 60%;
    }

    #crushes img, #winx_creators img {

        align-self: center;
    }

    #crushes > div, #winx_creators > div, #winx_songs {

        display: flex;
        flex-flow: row wrap;
    }

    .winx_summary {

        width: 45%;
}
}

body {

    background-image: url(../images/backgrounds/bg_winx.jpg);
    background-repeat: repeat;

}

#container_winx_shrine {

    margin: 0 auto;
    background-color: var(--white);

    display: grid;
    grid-template-areas: "header header header"
                            "main main main"
                            "footer footer footer";
    grid-template-columns: 0.8fr 1.5fr 0.8fr;
    grid-template-rows: auto auto auto;
    grid-gap: 1em;
}

header {

    grid-area: header;

    display: flex;
    flex-direction: row;
}

header > img {
    
    width: 50%;
    align-self: baseline;
}

main {
    grid-area: main;

    /*Its own grid*/
    display: grid;
    grid-template-columns: 100%;
    grid-auto-rows: auto;
    grid-gap: 2em 0.5em;
}

main section:nth-child(1) > img, #summary img {

    float: right;

}

#summary {

    width: max(66%, 300px);
    box-sizing: border-box;
    padding: 1em 1.5em;

}

#winx_group, #crushes img {

    border: solid 0.5rem var(--light_purple);
    border-radius: 10%;

}

#enchantix {

    display: flex;
    flex-flow: row wrap;
}

#enchantix {

    width: 80%;
    margin: 2em auto;
    display: flex;
    justify-content: center;
    gap: 1.5em 1em;

}

main section:nth-child(3) h2 {

    text-align: right;
}

#winx_songs {

    justify-content: space-between;
    align-items: flex-start;
}

main section:nth-child(3) ul {

    list-style-image: url(../images/icons/icons8-treble-clef-32.png);
}

main section:nth-child(3) img {

    width: clamp(150px, 25vw, 35%);
}

#crushes, #winx_creators {

    display: flex;
    flex-flow: column wrap;
    margin-top: 2.5em;
    gap: 2em;

}

#crushes > div {

    justify-content: center;
    gap: 2em;
}

#winx_creators > div {

    justify-content: center;
    gap: 2em;

}