@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('image.png');
    background-size: cover;     
    background-position: center;  
    background-repeat: no-repeat;  
    background-attachment: fixed;
}


.calculator {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    z-index: 10; 
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

input{
    width: 320px;
    border: none;
    padding: 24px;
    margin: 10px;
    background: transparent;
    box-shadow: 0px 3px 15px rgbs(84, 84, 84, 0.1);
    font-size: 40px;
    text-align: right;
    cursor: pointer;
    color: #ffffff;
}

input::placeholder{
    color: #ffffff;
}

button{
    border: none;
    width: 60px;
    height: 60px;
    margin: 10px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 20px;
    box-shadow: -8px -8px 15px rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.equalBtn{
    background-color: #fb7c14;
}

.operator{
    color: #6dee0a;
}

.info {
    color: rgba(255, 255, 255, 0.7); /* Slightly muted white */
    text-align: center;
    margin-top: 25px; /* More space from the calculator */
    font-size: 14px;
    position: relative;
    z-index: 10;
}

a {
    text-decoration: none;
    color: #5cab38; /* Match operator color for links */
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover {
    color: #bfffff;
}