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;
}