body{
    font-family:'Times New Roman', Times, serif;
    background: #f4f4f4;
    display: flex;
    justify-content: top;
    align-items: top;
    height: 200vh;
    margin: 0;
}

.converter{
    background: #ffff;
    padding: 40px 50px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
}

h1{
    font-size: 30px;
    margin-bottom: 30px;
    color: black;
    display: block;
    margin: 10px 0;
    text-align: left;
}

h2{
    font-size: 20px;
    margin-bottom: 20px;
    color: black;
    display: block;
    margin: 10px 10px;
    text-align: center;
    margin-top: 0;
}

label{
    display: block;
    margin: 5px 5px 5px;
    font-weight: bold;
    color:blue;
}

input{
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: 3px;
    border-radius: 10px;
    font-size: 20px;
}

button{
    background: #4CA;
    color: white;
    border: none;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
}

button:hover {
    background:#45a;
}