body{
    background: rgb(113, 212, 207);
}

#colorBtn {
   
    background: rgb(220, 114, 216);
    transition: background-color 0.3s;
    width: 130px;
    height: 35px;
    border-radius: 6px;
}
#box{
    margin: 6px;
}
#btn{
    background: rgb(103, 103, 249);
    border-radius: 4px;
    width: 130px;
    height: 35px;
}
#colorBtn.active {
    background: rgba(136, 6, 118, 0.747);
}

#toggleBtn{
    background: burlywood;
    width: 140px;
    height: 40px;
    border-radius: 6px;
}

#text{
    font-size: 24px;
}

#nameInput{
    width: 155px;
    height: 25px;
    border-radius: 8px;
}
#formBtn{
    width: 100px;
    height: 30px;
    background-color: aquamarine;
    border-radius: 6px;
}

.gallery-text{
    text-align: center;
}

#gallery{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#gallery div{
    text-align: center;
    flex-basis: calc((100% - 90px) / 3);
    gap: 20px;
   
}
#gallery img {
    display: block;
    width: 100%;
    height: 90%;
    object-fit: cover;

}
.form-group{
  padding: 3px;
    
}
.form-input{
    width: 200px;
    height: 30px;
    border-radius: 4px;
}

   
.btnForm{
    margin-top: 4px;
    align-items: center;
    padding: 4px;
    width: 210px;
    border-radius: 4px;
    margin-left: 2px;
}