* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto Serif', serif;
  cursor: pointer;
}
body{
  font: 14px;
  height: fit-content;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./imgs/wallpaper-md.jpg");
  background-blend-mode: color-burn;
  background-repeat: no-repeat;
  background-size: cover;
}

img{
  width: 20rem;
}

h1, h2, p {
  text-align: center;
  margin-top: 2rem;
  color: white;
  line-height: 1.3rem;
  padding: 1rem;
}
#color-palette{
 width: fit-content;
 display: flex;
 justify-content: center;
 margin: 0 auto;
}
#play-info{
  padding: 1rem;
  text-align: center;
}
#btns{
    display: flex;
    justify-content:center;
    padding:1.5rem;
    gap: 2rem;
}

.btn{
  padding: 0.3rem;
}

input{
  padding: 0.3rem;
  width: 20rem;
  text-align: center;
}
.color {
    width: 3rem;
    height: 3rem;
    margin: 1rem;
    border: 1px black solid;

}
#pixel-board{
  margin: 2rem auto;
  font-size: 0;
  width: 200px;
}
.pixel{
  display: inline-block;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid black;
  background-color: white;
}

#painting-area {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem auto;
}

#green-heart {
    width: 1.2rem;
    vertical-align: text-bottom;

}
#footer{
    margin-top: 10rem;
    line-height: 1rem;
    text-align: center;
}

