#transform-view {
    width: 100%;
    height: 30vh;
    font-size: 15px;
}


#transform-result {
    width: 100%;
    height: 30vh;
    font-size: 15px;
}

body {
    line-height: 1.4;
    background-color: #EEEEEE;
    font-size: 16px;
}

h1 {
    text-align: center;
    color: #444444
}

/* The alert message box */
.alert {
    padding: 20px;
    background-color: #4CAF50; /* green */
    color: white;
    margin-bottom: 15px;
    margin-top: 15px;
    transition: opacity 0.5s linear;
    opacity: 0;
  }
  
  /* The close button */
  .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 25px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  /* When moving the mouse over the close button */
  .closebtn:hover {
    color: black;
  }