*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
   background-color: rgba(54, 225, 217, 0.716);
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .converter {
    margin: 100px auto;
    padding: 20px;
    border: 1px solid #ccc;
    width: 400px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 0 40px #c44242;
    border-bottom: 4px solid #000;
    border-left: 4px solid #000;
    border-right: 4px solid #000;
    border-top: 4px solid #000;
    
  }

.click{
  height: 20px;
  display: flex;
  align-items: flex-end;
  margin-left: 270px;
  margin-bottom: 10px;
  margin-top: 25px;
}
.clickhome{
  height: 20px;
  align-items: flex-end;
  margin-right: 250px;
  margin-top: 0px;
}

h2 {
    margin-top: 0;
    color: rgb(255, 0, 0);
    font-style: italic;
  }
  
  label {
    display: inline-block;
    width: 60px;
    text-align: left;
  }
  
  input[type="number"] {
    width: 200px;
    height: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px #000000
  }
  
  button {
    padding: 10px 20px;
    background-color: #fafafa;
    color: #000000;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 0 10px #c44242;
    border-bottom: 4px solid #000;
    border-left: 4px solid #000;
    border-right: 4px solid #000;
    border-top: 4px solid #000;
  }
  
  button:hover {
    background-color: #ffffff;
    transform: scale(1.1);
    transition: 0.5s;
  }
