body {
    font-family: 'Source Code Pro', monospace;
    background-color: #5c4b7a;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #ffff;
  }

  .container {
    background-color: #292b36;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
  }

  h1 {
    color: white;
  }

  label {
    display: block;
    margin-top: 10px;
    color: white;
  }

  input {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    box-sizing: border-box;
  }

button {
    margin-top: 10px;
    background-color: #5af78d;
    color: #292b36;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Source Code Pro', monospace;
}

button:hover {
    background-color: #45a049; 
}

.output {
    margin-bottom: 0;
    font-size: 20px;
    color: #4caf50; 
    
}

#outputText{
    color:#5af78d
}
