body {
    font-family: Sans-Serif;
    height: 90vh;
    margin: 5vh;
  }
  
  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .status {
    padding: 8px;
    margin-top: 40px;
    color: blue;
  }
  

  .message {
    color: orange;
  }

  #app {
    height: 100%;
  }

  .button_container {
    height: 100%;
    justify-content: space-between;
    align-items:center;
  }

  .button {
    border: none;
    background-color: #1486ff;
    border-radius: 8px;
    color: white;
    font-size: smaller;
    font-family: inherit;
    font-weight: inherit;
    height: 45%;
    width:100%;
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
    overflow: hidden;
  }

  .button:active {
    color: black;
  }