body{
    margin: 0;
    background: linear-gradient(to left bottom, lightgreen, lightblue);
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    flex-direction: column;

}

.container{
    background: rgba(255,255,255, .3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0,0,0, .3);
    margin: 5px;
}
.converter{
    background: rgba(255,255,255, .3);
    padding: 20px;
    display: flex;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow:0 10px 10px rgba(0,0,0, .3);
    flex-direction: row;

}

.heading{
    font-size: 30px;
}

.input{
    padding:  10px 20px;
    font-size: 18px;
    background: rgba(255,255,255, .4);
    background-color: rgba(255,255,255, .5);
    margin: 10px;
    border: none;
    border-radius: 10px;
}

.btn{
    background-color: lightgreen;
    border: 1px solid black;
    font-size: 20px;
    padding: 10px 20px;
    margin: 10px;
    box-shadow: 0 0 4px rgba(0,0,0, .3);
    cursor: pointer;
    border-radius: 10px;
}

.btn:hover{
    box-shadow: 0 0 8px rgba(0,0,0, .3);
    transition: all 300ms ease;
}

.info-text{
    font-size: 20px;
    font-weight: 500;
}