﻿@font-face {
    font-family: Robofan;
    src: url('../Lib/Robofan.otf');
}

/**************************************************          MACHINES          **************************************************/

body {
    background-color: #141e2e;
    color: white;
    font-family: 'Comic Sans MS';
    margin: 0;
    text-align: center;
}

.conteneur {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.carte {
    background-color: #1e1e1e;
    border-radius: 50px;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.5);
    height: 430px;
    margin: 10%;
    transition: 0.3s;
    width: 280px;
}
    .carte:hover {
        box-shadow: 0 20px 40px 0 rgba(0,0,0,1);
        height: 450px;
        width: 300px;
    }
    .carte > img {
        border-radius: 50px 50px 0 0;
        width: 100%;
    }

.ajouter {
    align-items: center;
    display: none; /* flex quand affiché */
    font-size: 40px;
    justify-content: center;
}