body {
    background-color: #ffc0cb;
    font-family: sans-serif;
}

.content {
  display: flex;
  flex-direction: column;
  background-color: white;
  min-width: calc(100vw - 100px);
  min-height: calc(100vh - 100px);
  border-radius: 50px;
  margin: 25px;
  padding: 25px;
}

.menu-option {
  background: none;
  margin: 0 1em 1em 0;
  padding: 1em;
  border-radius: 20px;
  border: solid grey;
  text-decoration: none;
  color: grey;
  font-weight: bold;
}

.menu-option-active {
  cursor: pointer;
  box-shadow: 5px 5px black;
  border: solid black;
  color: black;
}

.menu-option-active:hover {
  background: none;
  border: solid black;
  color: black;
  box-shadow: none;
}

.topic-list {
  margin: 0;
}

.login-input {
  margin: auto;
}

@keyframes wiggle {
    0% { transform: translateX(0); }
    15% { transform: translateX(-5px); }
    30% { transform: translateX(5px); }
    45% { transform: translateX(-5px); }
    60% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.wiggle {
    animation: wiggle 0.3s ease;
}

#pwInput {
  border: solid 3px black;
  border-radius: 10px;
  padding: 12px 10px 13px 10px;
}

#pwEnter {
  box-shadow: 5px 5px black;
  border: solid black;
  color: black;
  border-radius: 10px;
  background: none;
  font-weight: bold;
  padding: 10px;
}

#pwEnter:hover {
  cursor: pointer;
}