@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Mukta', 'Work Sans', Tahoma, sans-serif;
}

html {
    width: 100%;
}

body {
    min-height: 100vh;
    font-weight: 200;
    background: #ff7979;
}

#main_cont {
    /* background: rgba(0, 0, 0, 0.2); */
    min-height: 100vh;
}

header {
    background: #ff7979;
    padding: 5px 0;
    font-size: 1.6em;
}

header h1 {
    text-align: center;
    color: #ffffff;
    font-weight: 600;
}
form {
    width: 30%;
    margin: 10% auto auto;
}

input {
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 1.6em;
    background: transparent;
    color: #ffffff;
    border: none;
    box-shadow: 1px 1px 40px 0px rgba(35, 35, 35, 0.4);
}

form input:focus {
    border: none;
    outline: none;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#conversionButton {
    width: 200px;
    margin: 2% auto auto;
    text-align: center;
}

#conversionButton button {
    margin: 1%;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1.2em;
    box-shadow: 1px 1px 40px 0px rgba(35, 35, 35, 0.4);
    min-width: 230px;
    padding: 5px;
    cursor: pointer;
    display: none;

}

#conversionIN , #conversionUS {
    width: 40%;
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-size: 3.6em;
    overflow: scroll;
}

#conversionUS {
    display: none;
}

#words {
    width: 40%;
    margin: auto;
    text-align: center;
    color: #ffffff;
    text-transform: capitalize;
}