body {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #ff5303;
    background-color: #e6b000a9;
  }
  
  .container {
    width: 300px;
    padding: 20px;
    background-color: #f8ec82;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  input {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background-color: #ff5303;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #c23700;
  }
  
  #list {
    list-style-type: none;
    padding: 0;
  }
  