@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body{
    width:100vw;
    height:100vh; 
    background: linear-gradient(45deg, #0a0a0a, #3a4452);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator{
    border: 1px solid #717377;
    height: 100px;
    width: 340px;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0px 3px 15px rgba(113, 115, 119, 0.5);
}

input{
    width: 320px;
    border: none;
    padding: 24px;
    margin: 10px;
    margin-top: 5px;
    background: transparent;
    box-shadow: 0px 3px 15px rgbs(84,84,84,0.1);
    font-size: 40px;
    text-align: right;
    cursor: pointer;
    outline: none;
    color: white;
}

input::placeholder{
    color: white;
}


button{
    border: none;
    width: 60px;
    height: 60px;
    margin: 10px;
    border-radius: 50%;
    background: transparent;
    color: white;
    font-size: 20px;
    box-shadow: -8px -8px 15px rgba(255, 255, 225, 0.1);
    cursor: pointer;
}

.equalbtn{

    background-color: #fb7c14;
}

.operator{
    color:#6dee0a
}