@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.container{
    background-color: black;
    width: 100%;
    height: 100vh;
}
.content{
    width: 550px;
    height: 550px;
    background-color: #1F2937;;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.screen{
    box-sizing: border-box;
    width: 100%;
    height: 260px;
    text-align: center;
    background: linear-gradient(246.26deg, #585DFE 0%, #FB3796 100%);
}
.screen h1{
display: block;
padding-top: 53px;
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-size: 22px;
line-height: 38px;
text-align: center;
letter-spacing: -0.05em;
color: #FFFFFF;
}
.screen p{
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-size: 44px;
line-height: 24px;
text-align: center;
color: #FFFFFF;
padding-top: 33px;
padding-bottom: 33px;
}
.units-content{
    width: 80%;
    margin: 10px auto;
}
.units{
    display: block;
    text-align: center;
    padding-top: 27px;
}
.units h2{
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
text-align: center;
color: #FFFFFF;
padding-bottom: 5px;
}
.units p{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
text-align: center;
color: #D2D2D2;

}
#convert-btn{
    width: 80%;
    margin: auto;
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    background-color: rgb(231, 50, 50);
    color: #FFFFFF;
}
#convert-btn:hover{
    background-color: #FFFFFF;
    color: rgb(231, 50, 50);
}
#number{
    height: 44px;
    text-align: center;
    font-size: 32px;
}
