* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font: 1em sans-serif;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.message {
  background-color: antiquewhite;
  padding: 15px;
  width: 60vw;
  height: 4rem;
  margin: auto;
}
#actionMessage {
  margin-bottom: 15px;
}

#errorMessage {
  margin-top: 15px;
}

#buttoncontainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  margin-top: 15px;
}

/* button {
    color: white;
  padding: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  background-color: cadetblue;

  &:hover {
    background-color: blue;
  }

&[onclick="reset()"]   {
  background-color: red;

  &:hover {
    background-color: darkred;
  }
}

} */