@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital@1&display=swap');

* {
    margin: 0;
    padding: 0;
    /* border-sizing: border-box; */
    font-family: 'Fira Sans', sans-serif;

}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    /* margin: 8em 1em 1em 1em; */
    background-color: black;
    background: linear-gradient(30deg, black, #2b2b2b);
}


.container {
    /* background-color: black; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* max-width: 20vw; */
    align-items: center;
    /* justify-items: center; */
    border: 2px solid #d4d4d2;
    border-radius: 15px;
    padding: 2em 1em;
    box-shadow: 1px 2px 15px rgba(212, 212, 210, 0.5);
}

.btn {
    margin: 0.2em;
    border: 2px solid rgb(80, 80, 80);
    cursor: pointer;
    border-radius: 50%;
    font-size: 26px;
    box-sizing: border-box;
    /* padding: 0.7em; */
    width: 2.5em;
    height: 2.5em;
    background-color: rgb(80, 80, 80);
    color: white;
}

.input {
    padding: 0.3em;
    width: 9.6em;
    /* width: 100%; */
    height: 1.8em;
    /* margin: auto 1em; */
    margin-bottom: 25px;
    margin-top: 5px;
    margin-right:17px ;
    margin-left: 17px;
    border: none;
    border-radius: 10px;
    font-size: 1.8em;
    text-align: right;
    background-color: rgb(80, 80, 80);
    color: white;
    box-shadow: 2px 2px 9px #2b2b2b;
}

.top3btn {
    background-color: #d4d4d2;
    border-color: #d4d4d2;
    color: black;
}

.orangbtn {
    background-color: #ff9500;
    border-color: #ff9500;
}