#pageContainer {
  display: flex;
  justify-content: center;
}

#header {
  display: flex;
  justify-content: center;
  font-size: 40px;
  font-family: Georgia, serif;
  color: #3b453e;
}

.card-header {
  margin-top: 30px;
  width: 625px;
  height: 625px;
}

#selectionArea {
  display: flex;
  justify-content: space-between;
}

#sizePickerArea {
  display: flex;
}

#userInputForm {
  display: flex;
}
#inputItems {
  display: flex;
}
#inputSubmit {
  margin-top: 10px;
}
#inputField {
}

#colorPickerArea {
  display: flex;
}

#clearGrid {
  margin-left: 5px;
}

#box {
  display: flex;
  justify-content: center;
}

#container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.gridSquare {
  height: 10px;
  width: 10px;
}

.card-header {
  max-width: 750px;
}
#printPage {
  margin-top: 10px;
}

@media print {
  .gridSquare {
    -webkit-print-color-adjust: exact !important;
  }
  #header {
    display: none !important;
  }
  #divider {
    display: none;
  }
  #selectionArea {
    display: none;
  }
  #printPage {
    display: none;
  }
}

@media (max-width: 450px) {
  .card-header {
    margin-top: 30px;
    width: 400px;
    height: 400px;
  }

  .gridSquare {
    height: 5px;
    width: 5px;
  }

  #selectionArea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
