* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  outline: none;
}

body {
  font-family: "helvetica neue", "arial", sans-serif;
  background-color: powderblue;
}

button {
  cursor: pointer;
  border-radius: 2px;
  color: black;
}

button:hover {
  background-color: white;
}

.highlight {
  background-color: white;
}

.selected {
  background-color: black;
  color: white;
  pointer-events: none;
}

.indent {
  margin-left: 40px;
}

.hand {
  position: fixed;
  bottom: 60px;
  right: 60px;
}

p {
  margin-bottom: 16px;
}

header {
  margin: 20px;
  width: 25%;
  position: fixed;
  top: 0;
  left: 0;
}

main {
  margin: 20px;
  width: 70%;
  position: absolute;
  right: 0;
}

footer {
  margin: 20px;
  width: 25%;
  position: fixed;
  bottom: 0;
  left: 0;
}

button {
  font-size: 16px;
  margin-bottom: 8px;
}

.titles {
  font-size: 24px;
  border-top: 2px solid black;
}

.notes {
  font-size: 12px;
}

.red {
  color: red;
}

img.home {
  width: 100%;
}

img {
  width: 200px;
  height: auto;
}

.hand img {
  width: 400px;
  height: auto;
}

.special {
  animation: blinker 1s linear infinite;
}

ul,
ol {
  padding-left: 0;
}

iframe {
  width: 100%;
  height: 95vh;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@media only screen and (max-width: 1000px) {
  header,
  footer,
  main {
    position: relative;
    width: 90%;
    margin: 20px;
  }
  .hand {
    display: none;
  }
}
