body {
  background-color: #e9e9e9;
  font-family: helvetica,arial,sans-serif;
}

.content {
  display: flex;
  flex-direction: column;
  width: 70vw;
  height: 50vh;
  margin: auto;
  align-items: center;
  justify-content: center;

  .main {
    background-color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 36px;
    width: 100%;
  }

  .header {
    padding: 18px;
    margin-bottom: 18px;
    font-size: 48px;
    text-align: center;
    background-color: #871016;
    color: #fff;
    border-radius: 8px;
  }

  .info {
    padding: 18px;
    margin-bottom: 18px;
    font-size: 36px;
    border-radius: 8px;
    background-color: #e9e9e9;
    min-width: 40%;
    text-align: center;

    p {
      padding: 0;
      margin: 0;
    }

    .position {
      font-weight: bold;
    }
  }

  button.generate {
    border: none;
    border-radius: 8px;
    font-size: 24px;
    padding: 16px;
    background-color: #871016;
    color: #fff;
    cursor: pointer;
  }

  button.generate:hover, button.generate:focus {
    filter: brightness(150%);
  }
}
