body {
  background: #f5deb3;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000000;
  margin: 5px 20px;
}

header {
  display: flex;
  flex-direction: row;
  background: #e5cfa9;
}

.logo {
  background: #ffa500;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-align: center;
  color: #000000;
  padding: 10px;
  font-size: 32px;
}

.menu-btn {
  text-decoration: none;
  text-align: center;
  font-size: 24px;
  color: #000000;
  background-color: #90ee90;
  padding: 15px 20px;
}

.menu-btn:hover {
  background-color: #008000;
}

.divider {
  background-color: #808080;
  height: 1px;
  width: 100%;
  margin: 5px 0;
  padding: 0;
}

.icon-button {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 50%;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.icon-button.icon-button-large {
  height: 40px;
  width: 40px;
}

.icon-button:hover {
  cursor: pointer;
}

.icon-button.icon-button-disabled {
  background-color: #00000010;
}

.icon-button.icon-button-disabled:hover {
  cursor: not-allowed;
  background-color: #00000010;
}

.error {
  background-color: #ffa0a0;
  border: 1px solid #ff0000;
  border-radius: 5px;
  padding: 5px;
  margin: 5px 0;
}

.error:hover {
  background-color: #ffbbbb;
  cursor: pointer;
}

.no-display {
  display: none;
}

.notifier-container {
  position: fixed;
  top: 30px;
  right: 30px;
}

.notifier {
  background-color: #ffff75;
  border: 2px solid #939300;
  padding: 10px;
  border-radius: 15% / 50%;
  font-size: 20px;
}

.notifier:hover {
  background-color: #fcfc3d;
  cursor: pointer;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .menu-btn {
    padding: 10px;
  }
}
