/* Philippe Gerard 12.01.24 */

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: Helvetica, sans-serif;
  background-image: url(img/background.png);
}

/* Typo & Bannière */


.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20%;
  background-color: white ;
  width: 100%;
}

.banner p {
  text-align: center; 
}

/* Tableau Palettes & Stickers */
canvas {
  border: 1px solid #000;
}

#colorSelection {
  display: flex;
  margin-top: 10px;
}

.colorPreview {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  margin-right: 5px;
  cursor: pointer;
  background-color: white;
}

input[type="radio"] {
  display: none;
}

#stickerContainer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.sticker {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border: 1px solid #000;
}

@keyframes marqueeAnimation {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .banner h1 {
    font-style: italic;
    text-transform: uppercase;
    font-size: 60px;
    margin: 0;
    color: rgb(197, 167, 255);
    white-space: nowrap; 
    animation: marqueeAnimation 10s linear infinite; 
  }
  