body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  background-color: #0a2647;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.header {
  background-color: grey;
  margin-right: 30px;
  display: flex;
  justify-content: space-evenly;
  padding: 30px 0px;
  width: 100%;
  font-style: italic;
  font-size: 30px;
}

.body {
  display: flex;
  justify-content: center;
  padding: 300px 30px;
  gap: 40px;
  width: 90%;
}

.footer {
  padding: 30px 0px;
  background-color: grey;
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  width: 100%;
  color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.options {
  padding: 50px 10px;
  background-color: grey;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 30px;
  border-radius: 25px;
}

.grid-container {
  background-color: white;
  height: 600px;
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border: solid black;
}

.grid {
  border: solid black;
  width: 100%;
  height: 100%;
}

.row {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
}

.painted {
  background-color: black;
}

.clear-button,
.size-button {
  padding: 15px 10px;
  background-color: white;
  border-radius: 10px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
