* {
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  border: black;
  height: 100vh;
  width: 100%;
  font-family: "Courier New", Courier, monospace;
}

/* Menu */
.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  margin-top: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 2em;
  /* color: rgb(175, 15, 15); 
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);*/
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-shadow: -2px -2px 0 #292f36, 2px -2px 0 #292f36, -2px 2px 0 #292f36,
    2px 2px 0 #292f36;
}

.resetButton,
.gridSizeInput {
  color: #292f36;
  border: 3px solid #292f36;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  background-color: transparent;
  padding: 10px;
  outline: none;
  border-radius: 4px;
  font-size: 17px;
  transition: all 0.5s ease;
}
.resetButton {
  color: #fcfafa;
  background-color: #292f36;
}
.resetButton:hover {
  color: #292f36;
  background-color: transparent;
  cursor: pointer;
}

.gridSizeInput {
  margin: 10px;
  padding: 5px;
}
/* Sketch Pad */

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gridContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 700px;
  margin-top: 25px;
  margin-bottom: 50px;
  border-color: rgb(58, 45, 45);
  border-radius: 25px;
  border-style: solid;
  background-color: rgb(175, 15, 15);
  box-shadow: 5px 3px 3px rgb(58, 45, 45);
}

.gridScreen {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 600px;
  height: 600px;
  border-color: black;
  border-style: solid;
  border-width: thin;
  background-color: whitesmoke;
}

.gridScreen > div {
  display: flex;
  flex-direction: column;
  height: auto;
  flex: 1 0 auto;
}

.gridScreen > div > * {
  flex: 1;
  border-style: dashed;
  border-width: thin;
  border-color: rgb(58, 45, 45);
}

/* Footer */
a,
a:visited {
  text-decoration: none;
  color: #fcfafa;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #292f36;
  color: #fcfafa;
  font-size: 20px;
}
.footer a:hover {
  text-decoration: underline;
  color: #292f36;
  background-color: #fcfafa;
  cursor: pointer;
}

/* Slider effects 

.slidecontainer {
  width: 100%; 
}
.slider:hover {
  opacity: 1; 
}

.slider {
  -webkit-appearance: none; 
  appearance: none;
  width: 100%; 
  height: 25px; 
  background: #d3d3d3; 
  outline: none; 
  opacity: 0.7; 
  -webkit-transition: 0.2s; 
  transition: opacity 0.2s;
}


.slider::-webkit-slider-thumb {
  -webkit-appearance: none; 
  appearance: none;
  width: 25px; 
  height: 25px; 
  background: #04aa6d;
  cursor: pointer; 
}

.slider::-moz-range-thumb {
  width: 25px; 
  height: 25px; 
  background: #04aa6d; 
  cursor: pointer; 
}

*/
