body{
    margin: 0;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: flex-start; /* Align items to the top */
    min-height: 100vh;
     background-color: #50524D;
     font-family: 'Courier New', Courier, monospace;
}
.container{
    background: rgb(68, 107, 123);
    color:aliceblue;
    padding: 20px;
    border-radius: 10px; ;
}
.container2{
      background: rgb(68, 107, 123);
      color: aliceblue;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      width: 80%;
      max-width: 500px;
}
.input{
    width: 100%;
    font-size: 20px;
    height: 30px;
}
.result{
    font-weight: 600;
    font-size: 20px;
}
.PS-ENG{
    color:gold; 
    font-weight: 600;
    font-size: 20px;
}
.centered-text {
  text-align: center;
}