main {
    padding-left: 4em;
    padding-right: 4em;
    padding-top: 3em;
    padding-bottom: 6.3em;
}

main section {
    padding-top: 2em;
    padding-bottom: 3em;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 100%;
}

main article {
    display: flex;
}

main #collection_carte {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0 auto;
    flex: 0 0 80%;
}

main #filtre {
    position: fixed;
    flex: 0 0 20%;
    margin-left: 2em;
}

main .carte {
    border: 1px solid black;
    box-shadow: 0px 0px 5px rgb(94, 94, 94);
    width: 300px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    background-color: white;
    transition-duration: 0.5s;
    margin-bottom: 3em;
    margin-left: 2em;
}

main .carte:hover {
  transform: scale(1.05);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

main .illu {
    width: 150px;
    margin: 0 auto;
}

main .carte h2 {
    background-color: rgb(153, 153, 153);
    width: 100%;
    padding: 17px;
    color: white;
    text-align: center;

    background-image: url("../img/shop_fond.png");
    background-attachment: scroll;
    background-size: cover;
    background-position: center 30px;
}

main .id_et_plus {
    display: flex;
    justify-content: flex-end;
}

main .id {
    margin: 0 auto;
}

main .ajoute {
    margin-bottom: 20px;
    padding: 1em;
    padding-bottom: 0px;
    text-align: center;
    border: none;
    background-color: none;
    outline: none;
    width: 100px;
    height: 40px;
    background-color: #3D7DCA;
    color: white;
    border-radius: 10px;
    transition: 0.25s;
}

main .ajoute:hover {
    transform: scale(1.05) rotate(-1deg);
    border: 1px solid black;
}

main > h1 {
    font-size: 48px;
    padding-left: 0.3em;
    padding-right: 3em;
}

main input {
    position:fixed;
    border-radius: 20px;
    height: 60px;
    font-size: 1.15em;
    text-align: center;
    z-index: -1;
}

main #ptit_loupe {
    position: fixed;
    height: 25px;
    width: 25px;
    margin-left: 15px;
    margin-top: 19px;
}

form {
    margin-top: 7em;
}

main .trait {
    border: 1px solid #000000;
    transform: rotate(90deg);
    height: 200px;
    margin-top: -1em;
    margin-left: 7.4em;
}

select {
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 10px;
    border: 2px solid black;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-left: -8em;
}

#btn_filtre {
    display: flex;
}

#lettre {
    margin-left: 7em;
}

@media screen and (max-width: 720px) {
    #filtre {
       display: none;
   }

   #collection_carte {
    margin-right: 5em;
   }
}