@import url("https://fonts.googleapis.com/css?family=Roboto");

* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

p {
  margin: 0;
  color: #e0e0e0;
  align-self: center;
  font-size: 24px;
  font-weight: bold;
}

html {
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  background-color: #353535;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

button {
  width: 125px;
  padding: 6px 12px;
  font-size: 14px;
  border: 2px solid #d6d6d6;
  border-radius: 10px;
  background-color: #ffffff;
}

button:hover {
  cursor: pointer;
}

#menuContainer {
  display: flex;
  width: 800px;
  justify-content: space-evenly;
}

#gridContainer {
  border: 6px solid #d6d6d6;
  border-radius: 6px;
  background-color: #ffffff;
  width: 800px;
  height: 800px;
  display: flex;
}

#gridContainer:hover {
  cursor: crosshair;
}

.column {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.grid {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 1px;
}
