@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700&display=swap');

html{
    height: 100%;
    box-sizing: border-box;
}

*,
*::before,
*::after{
    box-sizing: inherit;
    margin: 0;
    padding: 0;

}

body{
    align-items: center;
    height: 100vh;
    background: linear-gradient(320deg, #c972ac, #8e71db);
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-display: swap;
    font-size: larger;
    height: inherit;
    justify-content: center;
}

.containner{
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.01);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(35, 35, 35);
    color: #232323;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.34);
    flex-basis: 400px;
    height: 320px;
    padding: 30px 50px;
}

.screen{
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.01);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(255, 255, 255);
    font-size: larger;
    overflow: auto;
    padding: 5px;
    text-align: justify;
}

.numeric{
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    background: rgb(227, 194, 255);
    border: 2px solid rgba(255, 255, 255, 0.01);
    border-radius: 7px;
    box-shadow: 0 2px 15px rgb(103, 10, 185);
    font-size: 15px;
    overflow: auto;
    text-align: justify;
    width: 100px;
}

.button-calc{
    display: flex;
    justify-content: center;
    place-items: center;
}

.btn-calc{
    width: 130px;
    height: 30px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    color: #4e0dff;
    transition: all 0.6s 
    ease-in-out 0s;
    box-shadow: inset 0 0 20px;
}

.btn-calc:hover{
    background: transparent;
    color: aqua;
    transform: scale(1.0) rotate(360deg);
    box-shadow: 0 0 60px rgb(48, 14, 168, .75);
    cursor: grab;
    border: 2px solid rgba(255, 255, 255, 0.01);
}