body {
    font-family: sans-serif;
    width: 100vw;
    height: 100vh;
}

* {
    box-sizing: border-box;
}

#invader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #3c406c 0%, #6d57cf 100%);
    min-height: calc(100vh - 5%)
}

/* .configuration {
    background-color: #3148AD;
    padding: 1em;
} */
.configuration {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #272bad;
  }
  
  .configuration input {
    padding: 1em;
    border:0;
    font-size: 1.2em;
    width: 10em;
    margin-right: 2px;
  }
  
  .configuration input:first-child {
    border-radius: .5em 0 0 .5em;
  }
  
  .configuration button {
    padding: 1em;
    border:0;
    font-size: 1.2em;
    color: #fff;
    background: #9957e4;
    border-radius:0 .5em .5em 0;
  }
  

.line {
    display: flex;
    background: rgb(0, 0, 0, 0.1);
}

.pixel {
    border: 2px solid;
    width: 20px;
    height: 20px;
    background-color: white;
}

.bourg {
    position: fixed;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0, 0.3);
    display: flex;
    padding: 0.5em;

}


.bourg a {
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    margin: 0.5em;
    transition: 0.5s;

}



.pixel--black {
    background-color: black;
}

.pixel--plain {
    background-color: rgb(210, 218, 226);
}

.pixel--empty {
    background-color: rgb(72, 84, 96);
}

.pixel--light {
    background-color: rgb(251, 192, 72);
}

.pixel--highlight {
    background-color: rgb(121, 234, 131);
}


.bourg a:hover {
    transform: scale(1.2);
    transition: 0.5s;
}

.palette-color--active {
    transform: scale(1.5);
    border: 1px solid black;
}