@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  --icon-size: 10vw;
  --main-img-size: 25vw;
  --font-main: "Montserrat", sans-serif;
  --font-accent: "Merriweather", serif;
  font-family: "Montserrat", sans-serif;
}

header {
  display: flex;
  background: #ffe457;
  min-height: 100vh;
  max-height: 100vh;
  min-width: 100vw;
  max-width: 100vw;
  font-family: var(--font-main);
  align-items: center;
  justify-content: center;
}

header h1 {
  font-weight: bold;
  font-size: 32px;
}

header h4 {
  font-family: var(--font-accent);
  letter-spacing: 1px;
  color: #444;
  font-style: italic;
  text-decoration: underline;
}

.header-main {
  display: flex;
  min-height: calc(100vh - var(--icon-size));
  max-height: calc(100vh - var(--icon-size));
  justify-content: space-evenly;

  flex-direction: column;
  align-items: center;
  gap: none;
}

.top {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.main-section {
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin: 5vw auto;
}

label[for="color-picker"] {
  font-weight: bold;
}

#color-picker {
  outline: none;
  background: none;
  border: none;
  height: 20px;
  width: 20px;
}
.etch-a-sketch {
  min-height: 80vh;
  max-height: 80vh;
  min-width: 80vh;
  max-width: 80vh;
  display: grid;
  /* This property updates as the number of boxes scale*/
  grid-template-columns: repeat(5, 20%);
}
.box {
  background: #ccc;
  /* This property updates as the number of boxes scale*/
  min-height: 20%;
  outline: 1px whitesmoke solid;
}
