@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Share+Tech+Mono&display=swap');

body{
    margin: 0px;
    padding: 0px;
    font-family: "Share Tech Mono", monospace;
    font-size: 30px;
}
.input{
    width: 50vh;
    padding: 10px;
    border-radius: 25px;
    background-color: rgba(128, 128, 128, 0.5);
    font-size: 30px;
    border: 1px solid rgb(160, 59, 26);
    height: 7vh;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
button{
    padding: 20px;
    border-radius: 25px;
    border: 1px solid rgb(181, 102, 4);
    background-color: rgba(213, 150, 42, 0.5);
    font-size: 25px;
    width: 20%;
    display: flex;
    justify-content: center;
}

.main-calculator-div{
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 10px;
    
}
.button-css{
    display: flex;
    width: 100%;
    justify-content: space-around;

}
.main-container-for-calculator{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;  
    align-items: center;
    background-image: url(pics/backgroundBig.jpg);
    background-size: cover;
    background-position: left; 
}

/* medai query herer */

@media (max-width: 460px) {
    .input {
        width: 45vh;
    }
}
@media (max-width: 420px) {
    .input {
        width: 40vh;
    }
}
@media (max-width: 376px) {
    .input {
        width: 35vh;
    }
}
@media (max-width: 335px) {
    .input {
        width: 30vh;
    }
}
@media (max-width: 294px) {
    .input {
        width: 90%;
    }
    .main-calculator-div {
       width: 80%;
    }
}
@media (max-width: 231px) {
    .button-css button{
        font-size: 20px;
        padding: 15px;
    }
}