*{
    margin: 0;
    padding: 0;
}
body{
    text-align: center;
}
h1{
    margin-top: 50px;
}
.container{
    height: 230px;
    width: 600px;
    margin: 0px auto;
    margin-top: 50px;
    box-shadow: 2px 2px 14px 0px rgba(0,0,0,0.75);
    border-radius: 7px;
}
.converter{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    width: 600px;
    gap: 20px;
}
.input-temp>select{
        border-radius: 5px;
        height: 40px;
        width: 120px;
        background-color: rgb(241, 241, 241);
        border: none;
}
.input{
    height: 40px;
    width: 140px;
    border-radius: 5px;
    border: 1px solid rgb(241, 241, 241);
    padding-left: 10px;
}
.output-temp>select{
    border-radius: 5px;
    height: 40px;
    width: 120px;
    background-color: rgb(241, 241, 241);
    border: none;
}
#btn{
    border-radius: 5px;
    height: 40px;
    width: 120px;
    background-color: rgb(241, 241, 241);
    border: none;
    color: white;
    background-color: #5783db;
}
.result{
    margin-top: 50px;
}