*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #97978f;
}

.grid-container{
    display: flex;
    height: 600px;
    justify-content: space-around;
}

.test-div{
    display: flex;
    height: 500px;
    width: 150px;
    flex-direction: column;
    justify-content: center;
    
  
}

.title{
    display: flex;
    justify-self: center;
    font-family: fantasy;
    font-size: 50px;
}

.grid{
    display: flex;
    height: 400px;
    width: 400px;
    align-self: center;
    flex-wrap: wrap;
    flex-direction: row;
}
#size-input, #color-input{
    background-color: white;
    margin-top: 15px;
}

.change-size, .change-color, .reset-grid{
    display: flex;
    border-radius: 12px;
    background-color: cornflowerblue;
    margin-top: 15px;
    
}