* {
    box-sizing: border-box;
}

body {
    
    font-family: Arial, Helvetica, sans-serif;
    background: #1f242d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

.header {
    display: flex;
    color: #f5ce52;
    font-size: 3rem;
    
}

h3 {
    color: #f5ce52;
}

label{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    text-align: center;
    color: #fff;
    margin: 10px;
    
}

.resulColon {

    background-color: rgb(87, 87, 85);
    padding: 5px 12px;
    border-radius: 20px;
    border-color: black;
}


input {

        border: 0;
        font-size: 30px;
        text-align: right;
}

.btnConvertir {

    color: black;
    background: #f5ce52;
    box-shadow: 1 1 1px white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 15px;
    padding: 5px 12px;
}