@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body{

    background-image: url("../png/fonds/fond_panier.png");

    div.container{

        h1{
            font-family: 'Saira', sans-serif;
            color: #F0BE86;
            font-size: 70px;
        }

        div.articles{

            div.article{
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 20px;
                background-color: #243f14;
                padding: 15px;
                border-radius: 8px;
                width: 65%;

                img{
                    width: 150px;
                    height: auto;
                    border-radius: 8px;
                    margin-left: 10px;
                    background-color: #538b32;
                }

                div.details{

                    h2{
                        font-family: 'Bebas Neue', cursive;
                        color: #F0BE86;
                    }

                    p{
                        font-family: 'Arial', sans-serif;
                        color: #FFFFFF;
                    }

                }
            }
            
        }

        button{
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 16px;
            font-family: 'Bebas Neue', cursive;
            background-color: #538b32;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            display: inline-block;
            border-radius: 8px;
            transition: all 0.3s ease;

            &:hover{
                background-color: #538b32;
                transform: scale(1.05);
                background: rgba(255, 255, 255, 0.1);
                box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
            }
        }

        div.total{
            
            h2{
                font-family: 'Saira', sans-serif;
                color: #F0BE86;
            }
        }
    }

    footer {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: space-around;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 100px;
    }

    .footer_etu_nom{
        opacity: 0;
        transition : opacity .5s linear;
    }

    .footer_etu:hover .footer_etu_nom{
        opacity: 1;
    }

    .footer_img {
        max-width: 150px;
        max-height: 150px;
        border: solid yellow 3px;
        transition: transform 0.5s ease;
    }

    .footer_img:hover{
        transform: scale(2.5);
    }

    .footer_box {
        display: flex;
        flex-direction: column;
        color: #000000;
    }

    .footer_cont {
        margin: 10px;
    }
}
