/* @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap'); */
        
* {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
    font-family: inter;
}

body 
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20vh;
}

.container 
{
    width: 550px;
    border: 2px solid rgb(152, 17, 214);
    background-color: azure;
    border-radius: 10px;
    padding: 20px 10px;
    margin: 20px 10px;
    box-shadow: 0px 0px 10px rgba(50, 49, 49, .6);
    height: auto;
}

.hed 
{
    font-size: 35px;
    color: blueviolet;
    text-align: center;
    font-family: sans-serif;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

.boxcontainer 
{
    display: flex;
    margin: 15px;
    gap: 34px;
}

p 
{
    font-size: 1rem;
    color: blueviolet;
    padding: 5px 2px;
    font-family: sans-serif;
}

.box1 
{
    width: 50%;
    padding: 10px 5px;
    /* border: 1px solid red; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.takval,
#unit 
{
    width: 100%;
    font-size: 22px;
    font-family: sans-serif;
    color: blue;
    border: none;
    background-color: transparent;
    outline: none;
    border-bottom: 4px solid rgb(99, 27, 192);
}

#unit 
{
    font-size: 1.1rem;
    margin-top: 6.5px;
    
}

.valuecontainer 
{
    margin: 15px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.valuecontainer p
{
    margin: 10px;
    font-size: 1rem;
    color: blueviolet;
    padding: 10px;
    font-family: sans-serif;
}

.value 
{
    width: 100%;
    height: 30px;
    margin: 10px;
    font-size: 22px;
    font-family: sans-serif;
    color: blue;
    border-bottom: 4px solid rgb(99, 27, 192);
}

.button 
{
    width: 50%;
    left: 30%;
    height: auto;
    font-size: 22px;
    font-family: sans-serif;
    color: white;
    font-weight: bold;
    background-color: rgb(69, 112, 241);
    border-radius: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin: 15px 0 0 122px;
    letter-spacing: 2px;
}

.emoji 
{
    width: 100%;
    text-align: center;
    padding: 10px;
}

.emoji > i 
{
    font-size: 5rem;
    background: #f12711;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f5af19, #f12711);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f5af19, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
