h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 5vh;
  }
  
  .titre {
    margin-top: 10vh;
  }

.container h1 {
    color: #1b1c22;
    font-size: 20px;
  }

.container {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 55%;
    height: auto;
    background-color: #fff;
    border-radius: 2vw;
    padding: 1% 2% 2% 2%;
}

.container a {
    margin-top: 10px;
    padding: 10px;
    background: #01205d;
    color: #ffffff;
    text-decoration: none;
    transition: all .2s;
    border-radius: 5px;
    width: 40%;
    text-align: center;
}

.container a:hover {
    background-color: #ead860;
    color: #01205d;
    font-weight: bold;;
}


.select {
    position: relative;
    display: flex;
    width: 20em;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
    margin-bottom: 10px;

}

/* Flèche */
.select::after {
    content: '\25BC';
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    background-color: #1b1c22;
    transition: .25s all ease;
    pointer-events: none;
}

  /* Transition */
  .select:hover::after {
    color: #47474c;
  }

/* Fin select */




@media only screen and (max-width: 767px) {
    .container {
        width: 100%;
        margin-bottom: 1300px;
    }

    .container a {
        width: 80%;
    }
}

