*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
}

.box{
    width: 300px;
    height: 330px;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px gray;
    border-radius: 10px; 
    background-color: transparent;
    outline: none;
    border: none;
    
}
.box h1{
    text-align: center;
    padding: 5px;
}
.box h3{
    padding: 10px;

}

.box .income{
    width: 280px;
    height: 40px; 
    padding: 0px 5px;
    font-size: 18px;
    outline: none;
    border-radius: 5px;
    border-color: rgba(16, 212, 16, 0.589);
    
    
    
}
.box .in1,.in2{
    padding: 10px 0px;
    position: relative;
    
}
.box .Show{
    position: absolute;
    left: 5%;
    top: 30%;
    font-size: 18px;
    color: gray;
    background-color: white;
    padding: 0px 3px;
    transition: all .1s;
}
.box .food{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box a{
    text-decoration: none;
}
.box .btn{
    padding: 5px;
    font-size: 17px;
}
.click{
    
    border-color: rgba(92, 54, 161, 0.589);
}













