/*
 * But :    Stylesheet pour mon application. 
 * Auteur : Tiago Fonseca
 * Date :   13.06.2024 / V1.0
 */

/* Style de base pour toutees les pages. */
html,
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16pt;
}

/* Styles pour le menu */
#menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    list-style-type: none;
}
.mnu {
    font-size: 24pt;
    margin: 10px;
}


/* Style pour le container qui va contenir les amiibos.*/
.amiiboContainer {
    text-align: center;
    border: 1px solid black;
    margin-bottom: 5%;
    margin-right: 20%;
    margin-left: 20%;
    background-color: beige;
    transition: transform 0.3s ease, background-color 0.5s ease, border-radius 0.3s ease;
    /* Ajoute une transition pour un effet lisse */
}
.amiiboContainer img {
    margin: 30px;
}
.amiiboContainer div {
    margin-bottom: 30px;
}
/* Permet de rajouter l'animation lors du passage de la souris.*/
.amiiboContainer:hover {
    transform: scale(1.05);
    background-color: rgb(77, 165, 224);
    border-radius: 15px;
}


/* Style du bouton pour remonter*/
#goUP {
    text-align: center;
    margin-bottom: 50px;
}
#btnUP {
    width: 200px;
    height: 50px;
    font-size: 15px;
}

/* Style pour le container qui va contenir les séries. */
.seriesContainer {
    background-color: beige;
    border: 1pt solid black;
    text-align: center;
    margin-right: 40%;
    margin-left: 40%;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, background-color 0.5s ease;
}
/* Permet de rajouter l'animation lors du passage de la souris.*/
.seriesContainer:hover {
    transform: scale(1.05);
    background-color: rgb(77, 165, 224);
    border-radius: 15px;
}
.serie {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Taille pour l'image des amiibos */
.imgAmiibo {
    width: 250px;
    height: 400px;
}

/* Style pour le texte de la page d'accueil */
#home{
    margin-top: 10%;
    text-align: center;
}

/* Style pour le texte de la page de la série */
#introSerie {
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
}
#nbr {
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 50px;
}
/*Mise en forme de ma carte*/
#mapid{
    margin-top: 5%;
    margin-left: 15%;
    margin-right: 15%;
    border: solid 3px black;
    border-radius: 15px;
    width: 70%;
    height: 700px;
}