html {
  height: 100%;
  width: 100%;
  font-family: playfair display;
}

/* TODO: Edit the properties below to customize your website! */
body {
  background: linear-gradient(to bottom,rgb(112, 150, 190) 0%,rgb(144, 192, 179) 100% );

  display: flex;
  align-items: center;
  flex-direction: column;
}

h1 {
  font-size: 25pt;
  margin: 20px 50px 30px 50px;
  color: #d4d0d7
}

p {
  font-size: 14pt;
  width: 80%;
  text-align: left;
  margin: 10px 50px;
  color: #d4d0d7
}

.bubble {
  background-color: rgb(69, 101, 114);
  border-radius: 10px;

  width: 80%;
  padding: 5px 0;
  margin: 50px 0 10px 0;
}

/* Edit me to change the appearance of the button! */
button {
  font-size: 16pt;
  background-color: #b0cde1;
  font-family: playfair display; BOLD
  border: none;
  /* for rounded corners */
  border-radius: 5px;

  width: 150px;
  height: 50px;
  margin: 20px 50px;
}

button:hover {
  background-color: #d4d0d7;
  cursor: pointer;
}

/* The camera */
#webcam-container {
  display: flex;
  justify-content: center;
}

/* The labels */
#label-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-size: 12pt;

  margin: 25px;
}