main {
    margin:auto;
    width: 1024px;
}

section{
    border-bottom: solid 2px goldenrod;
}

.title{
    width: 100%;
    text-align: center;
    font-size:54px;
    color: goldenrod;
    border: solid 2px goldenrod;
}

.titleCategorie{
    width: 100%;
    font-size:30px;
    color: goldenrod;
}

.libelleCategorie{
    width: 100%;
    font-size:20px;
    color: gray;
}

.titleImage{
    width: 120px;
}

form,
.cards{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.card{
    text-align: center;
    width: 170px;
    border: dashed 2px goldenrod;
    padding: 5px;
    margin: 10px;
}

.card h2{
    height: 10px;
    color: goldenrod;
}

.card img{
    width: 100%;
}

.card.selected {
    background: gold;
    font-size: 25px;
    color: white;
}



.action{
    width: 100%;
    text-align: center;
}

.button{
    text-align: center;
    cursor: pointer;
    color: goldenrod;
    background:#fff;
    font-size:48px;
    padding: 5px;
  }

.button:hover{
    background:goldenrod;
    color: white;
    box-shadow:0px 2px 10px 5px #97B1BF;
    color:#000;
 }
 
 section.vote {
    text-align: center;
 }
 
 .imagevote{
    width: 250px;
 }

 table#votes {
     width: 100%;
 }

table#votes tr:nth-child(even) {
    background: lightgrey;
}

 table#votes td {
     padding: 5px 5px;
 }

 .downloadButtonWrapper {
     text-align: center;
     margin: 1.5em
 }
 .downloadButtonWrapper a {
     display: inline-block;
     background-color: aqua;
     border-radius: 15px;
     color: black;
     padding: .5em 2em;
 }
 .downloadButtonWrapper a:hover {
     background-color: aquamarine;
 }

 .email_wrapper {
     background: #eaeaea;
     padding: 2rem;
     margin: 2rem 1rem;
     text-align: center;
     display: flex;
     justify-content: space-between;
     border-radius: 20px;
     width: 100%;
     font-size: 1.5rem;
 }

 .email_wrapper label {
     display: inline-block;
     margin-right: .5em
 }

 @media (max-width: 1023px) {
    /* … */
    main {
        margin:auto;
        width: 100vw;
    }

    .title{
        font-size: 30px;
    }
    .button {
        font-size: 24px;
    }
  }
