  *{
  margin: 0;
    padding: 0; 
  }

body {
    background-color: rgb(65, 90, 230);
    background-image: url(img04.jpg);
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    
}

#title {
    margin-top: 45px;
    font-family:monospace;
    font-size: 70px;
    color:azure;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}

#color-palette {
    height: 30px;
    display: flex;
    padding: 2%;

    
}

.color {
    width: 70px;
    height: 70px;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid ;
    border-radius: 50px;


}

#color01 {
    background-color: black;
}

#color02 {
    background-color:deeppink;
}

#color03 {
    background-color:aqua;
}

#color04 {
    background-color:mediumpurple;
}

#board-size{
    margin-top: 20px;
    padding: 5px;
    border-radius: 5px;
    width: 60px;
    border-color: dimgray;
}

.board {
    margin-left: -400px;
}

#generate-board{
    width: 50px;
    height: 28px;
    font-weight: bold;
    font-family:'Courier New', Courier, monospace;
    font-size: 14px;
    margin-top: 30px;
    border-radius: 5px;
    
}

#clear-board{
    padding: 5px;
    border-radius: 5px;
    width: 70px;
    font-weight: bold;
    font-family:'Courier New', Courier, monospace;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 10px;
    
    
   
}

.pixel {
    background-color: white;
    border:solid 1px black;
    display: inline-block;
    width: 40px;
    height: 40px;
    
    
}

#pixel-board {
   
    --size:5;
    width: 210px;
    height: 210px;
    border: solid 1px;
    background-color:black;
    display:grid;
    grid-template-columns:repeat(var(--size),1fr);
    grid-template-rows: repeat(var(--size),1fr);
    
    
    
    
}