html{
    background-color: black;
    color: #adadad;
    font-family: "Inter", sans-serif;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.card {
    background: linear-gradient(49deg, #2d4de0 0, #9f71f0 30%, #fc6277 58%, #f8ef6f 95%);
    width: 380px;
    height: 400px;
    padding-bottom: 10px;
    border-radius: 12px;
    position: relative;
}
.card-container {
    box-shadow: 1px 1px 10px 10px rgba(87, 87, 87, 0.3);
    flex-direction: column;
    display: flex;
    position: absolute;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    background-color: #222222;
    color: #929292;
    border-radius: 10px;
    transition: 0.2s ease;
    text-align: center;
}
.card:hover .card-container {
    border-radius: 5px;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    box-shadow: 1px 1px 10px 10px rgba(87, 87, 87, 0.3);
}
h1{
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
    margin: 0px 0px;
}  
.input{ 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.left{
    position: absolute;
    left: 70px;
    top: 158px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}
.right{
    position: absolute;
    right: 70px;
    top: 158px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}
.left:hover{
    color: wheat;
    cursor: pointer;
}
.right:hover{
    color: wheat;
    cursor: pointer;
}
#right{
    margin-left: 13px;
}
#temperature::-webkit-inner-spin-button,#temperature::-webkit-outer-spin-button{
    -webkit-appearance: none;
}
#temperature{
    position: absolute;
    top: 150px;
    padding: 10px;
    text-align: center;
    border-style: none;
    height: 1vh;
    color: wheat;
    margin: 5px 0px;
    background-color: #222222;
    box-shadow: 1px 1px 10px 10px rgba(0, 0, 0, 0.3);
}
.input-placeholder {
    position: absolute;
    top: 158px;
    right: 102px;
    color: wheat;
  }
.radiobtns{
    margin-top: 60px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
.radiobtns input[type="radio"] {
    display: none;
}
.radiobtns input[type="radio"] + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}
.radiobtns input[type="radio"] + label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px; 
    height: 10px; 
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: #6b6b6b;
}
.radiobtns input[type="radio"]:checked + label::before {
    background: linear-gradient(49deg, #2d4de0 0, #9f71f0 30%, #fc6277 58%, #f8ef6f 95%);
}
#convertbtn{
    margin-top: 10px;
    border-style: none;
    padding: 10px 30px;
    border-radius: 3px;
    box-shadow: 1px 1px 10px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    color: wheat;
    background-color: #222222;
    transition: 0.2s ease;
}
#convertbtn:hover{
    border: 1px solid purple;
    cursor: pointer;
}
#temperature:hover{
    border: 1px solid purple;
}
