* {
    font-family: 'VT323', monospace;
    color: #EC7574;
    text-align: center;
}

h1 {
    font-size: 10vw;
    margin: 0;
    margin-bottom: 10px;
    text-shadow: 5px 5px black;
}

body {
    background-color: #8EBCA8;
}

button {
    width: 5vw;
    height: 5vw;
    min-width: 70px;
    min-height: 70px;
    background-color: white;
    color: black;
    border-radius: 4vw;
    border: 0;
    transition: transform 0.1s ease-in-out;
}

button:hover {
    transform: scale(1.05);
}

.active {
    background-color: #EC7574;
    color: white;
}

.game {
    display: flex;
    margin: auto;
}

.settings {
    display: flex;
    margin: auto;
    margin-right: 5vw;
    flex-direction: column;
    justify-content: space-evenly;
    width: 5vw;
    min-width: 70px;
    height: 27vw;
    padding: 2.5vw;
    border-radius: 5vw;
    background-color: #C8B3A1;
}

#sizePick {
    margin-top: -0.02vw;
    margin-bottom: 2vw;
    width: 5vw;
}

#sizeLabel {
    margin-bottom: -0.02vw;
    color: black;
}

input[type='color']:active {
    transition: transform 0.05s ease-in-out;
    transform: scale(1);
  }
  
  input[type='color'] {
    -webkit-appearance: none;
    width: 80px;
    height: 80px;
    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.24) 0px 3px 8px;
  }

#grid {
    display: grid;
    margin: auto;
    margin-left: 0px;
    margin-top: 20px;
    margin-bottom: 40px;
    width: 32vw;
    height: 32vw;
    background-color: white;
    border: 2vw solid #AE9590;
    border-radius: 0.5vw;
}

.grid-item {
    background-color: white;
}

