.header {
  text-align: center;
  font-size: 1.875rem; /* 30px */
  line-height: 2.25rem; /* 36px */
}

.fa-github {
  color: black;
  font-size: 24px;
  transition: transform 0.3s ease-in-out;
}

.fa-github:hover {
  transform: scale(1.5);
  transition-duration: 300ms;
}

body {
  font-family: "JetBrains Mono";
  background-color: #e2e8f0;
}

main {
  padding: 1rem;
  display: flex;
  justify-content: space-around;
}

.menu {
  width: 640px;
  height: 640px;
  text-align: center;
  /* this is tailwindccss' text-2xl */
  font-size: 1.5rem;
  line-height: 2rem;
}

.buttons-section {
  width: 640px;
  height: 430px;
}

.current-status-section {
  width: 640px;
  height: 210px;
}

.buttons-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.current-status-section {
  display: flex;
  justify-content: space-around;
}

.current-color-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.current-color-div {
  height: 80px;
  width: 80px;
  outline-style: solid;
  outline-width: .5px;
}

.color-picker {
  padding: 0;
  height: 80px;
  width: 80px;
  outline-style: solid;
  outline-width: .5px;
}

.color-picker:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition-duration: 300ms;
  /* this is tailwindcss' ease-in-out transition timing function */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

input {
  border: 0;
  height: 44px;
  margin: 0;
  background: transparent;
}

.main-menu-button {
  outline-style: solid;
  outline-width: 1.5px;
  margin-bottom: 0.5rem;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 100%;
}

.main-menu-button:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition-duration: 300ms;
  /* this is tailwindcss' ease-in-out transition timing function */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.grid {
  width: 640px;
  height: 640px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  background-color: #f1f5f9;
  display: flex;
  flex-wrap: wrap;
}

footer {
  text-align: center;
}
