*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    color:#092956;
  
}
body{
    width: 100%; 
    font-size: 20px; 
    min-height:100vh;
}
.select{
    background-color: #000000bd;
    color:white
}
button,input,.box{
    cursor: pointer;
}
button{
   
    font-family: inherit;
    font-size: inherit;
    width:90%;
    border-radius:10px;
    padding:10px 20px;
    border: none;
    background-color:inherit;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: 0.1s linear 0.1s;
}
button:hover{
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
#header{
   
   display: flex;
   justify-content: center;
   align-items: center;
   height:90px;
   gap:50px;
   box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
 
}
.container{
    padding:20px 0;
    min-height:500px;
    display: flex;
    gap:70px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
}
#setting{
    width:300px;
    max-height: inherit;
    display: flex;
    flex-direction: column;
    gap:12px;
    padding:20px 0;
    justify-content: center;
    align-items: center;
   
}
input[type='color']:active {
    transition: transform 0.05s ease-in-out;
    transform: scale(1);
  }
  
  input[type='color'] {
    background: none;
    width: 90px;
    height: 90px;
    border: none;
   
  }
  input[type='color']::-webkit-color-swatch-wrapper {
    padding: 0;
  }
  input[type='color']::-webkit-color-swatch {
    border: none;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px
  }
#grid-size{
    font-family: inherit;
    font-size:30px;
    letter-spacing: 6px;
    font-weight:700;
}
.range{
   outline: none;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
   border-radius: 10px;
   padding:10px 0 15px 0;
   gap:15px;
   height: 40px;
   outline: none;
   width:90%;
   height:25%;
   display: flex;
   flex-direction: column;
   align-items: center;
   
}
.range #range-ip {
    width:80%;
}
#grid{
    min-width:500px;
    min-height:inherit;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
}
.box{  
    border:1px solid rgb(243, 239, 239,0.7);
}
     
.footer{
    box-shadow: rgba(0, 0, 0, 0.15) -1.95px -1.95px 2.6px;
   display: grid;
   place-items: center;
   width:100%;
   margin-top:17px;
   height:70px;
  
}


