html,
body {
    margin: 0;
    background-color: #40B0DF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 100vh;
    width: 100vw;
}


h1 {
    text-align: center;
}

#container {
    height: 500px;
    width: 500px;
    background-color: white;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.square {
    border: 0px solid black;
    margin: 0;
    float: left;
}

#gridSize {
    text-align: center;
    font-size: 1.5rem;
}

#options {
    margin: 20px auto;
    height: 50px;
    width: 400px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #FFD53D;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px 20px;
}

input[type=range] {
    text-align: center;
}

input[type=color]{
    display: block;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    margin: 0 auto;
    border: none;
    width: 50px;
    height: 50px;
    padding: 0;
    margin-bottom: 20px;
}
input[type=color]::-webkit-color-swatch {
    border-radius: 50%;
    border: none;
  }

input[type=color]::-moz-color-swatch {
    border-radius: 50%;
    border: none;
  }

  button:hover,
input[type='color']:hover {
  transform: scale(1.05);
}

input[type='color']:active {
  transition: transform 0.05s ease-in-out;
  transform: scale(1);
}

#options > * {
    background-color: white;
    color: black;
    padding: 10px 10px;
    border: 2px solid #FFD53D;

}

@media screen and (max-width: 600px) {
    #container {
        height: 300px;
        width: 300px;
    }

    #options {
        height: auto;
        width: 200px;
        display: flex;
        flex-wrap: wrap;
    }

    
}