@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bartle&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
* {
   margin: 0;
   text-decoration: none;
   padding: 0;
   list-style: none;
}

body{
    font-family: "Oswald", sans-serif;
    background: linear-gradient(35deg,#1e2020,#5f6264) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

header{
  background-color:#FFFF8F ;
  position: fixed;
  width: 100%;
  margin-top: 0px;
  height: 40px;
  box-shadow: 7px 5px 5px #262622 ;
  font-size: larger;
  padding-top: 10px;
  font-family: "BBH Sans Bartle", sans-serif;
}

header img{
  height: 2em;
  margin-top: -5px;
}

div.bandeau{
  display: flex;
  justify-content: space-evenly;
}
.game {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.images img {
    width: 120px;
    margin: 20px;
    cursor: grab;
}

.names {
    display: flex;
    flex-direction: column;
}

.drop {
    width: 200px;
    height: 140px;
    border: 2px dashed #FFFF8F;
    margin: 15px;
    background: rgb(136, 131, 131);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

.drop span {
    font-size: 16px;
    margin-bottom: 8px;
}

.drop img {
    width: 70px;
}

.correct {
    background-color: #8bc34a;
    color: white;
}

.wrong {
    background-color: #f44336;
    color: white;
}

.used {
    pointer-events: none;
}

#message {
    display: block;
    margin-top: 30px;
    font-size: 50px;
    font-weight: bold;
    color: white;
    text-align: center;
}

#logommi{
  position: absolute;
    bottom: -2px;
    left: -5px;
    margin: 0px;
}

 .images img {
    touch-action: manipulation;
}

.images img.selected {
    border: 3px solid #FFFF8F;
    border-radius: 12px;
    box-shadow: 2px 2px 8px 2px #FFFF8F;
}

h1{
    color: white;
    padding-left: 10px;
}