@charset "UTF-8";

body {
  font-size: 14px;
  background-color: rgb(230, 230, 230);
  color: rgb(25, 75, 25);
}

header,
section {
  /* border: 1px solid; */
  margin: 10px;
  padding: 5px;
}

ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

section ul li {
  max-width: 10%;
  visibility: hidden;
}

section ul li a{
  color: inherit
}

section:hover {
  color: rgb(230, 230, 230);
  background-color: rgb(25, 75, 25);
}

section:hover ul li{
  visibility: visible;
}

section p[contenteditable] {
  font-size: 8rem;
  margin: .5rem;
  text-align: center;
}

section:nth-child(3n) p[contenteditable] {
  text-align: right;
}

section:nth-child(3n+1) p[contenteditable] {
  text-align: left;
}


section .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section .bottom .specimen-button {
  border: 1px solid;
  color: inherit;
  padding: 5px;
  text-decoration: none;
}