*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
background-image: linear-gradient(to left,yellow,pink);
}
#main{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
        
}

#container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 20px;
    align-items: center;
    justify-content:space-around;
}

#head{
    font-size: 50px;
    color: red;
    
}

button{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

#font-color{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid royalblue;
     
}

#background-color{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid royalblue;

}

#background-image{
      border: 4px solid royalblue;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
  
 
}


#text{
    width: 200px;
    height: 220px;
    border: 4px solid royalblue;
    font-size: 20px;
    padding: 10px;
     background-repeat: no-repeat;
    background-size: cover;
   
    
    
}


#font-style{
    border: 4px solid royalblue;
    display: grid;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}
#font-style>h1{
    cursor: pointer;
}

