@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;1,100&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1{
    margin-top: 25px;
}
main{
    display: flex; 
    font-family: 'Poppins', sans-serif;
    color: #031926;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
    min-height: 100vh;
    gap: 2px;
    padding: 30px 0;   
}

/* Container Calculadora */
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
    position: relative;
    margin: 100px auto;
    width: 550px; 
    height: auto;
    padding: 10px;
    background: #dedede;
    border: 1px solid #d0d0d0;
    box-shadow: 4px 4px 4px #909090;
    border-radius: 15px;
    
}

/* Visor */
.top{
    position: relative;
    width: 96%;
    height: 48px;
    padding: 6px;
    padding-right: 13.5px;
    background: #fff;
}

/* corpo calculadora com botões*/
.body{
    margin-top: 10px;
    width: 95%;
    height: auto;
    padding: 12.5px;
    background: #fff;
}

/* campo visor */
.campo{
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.6;
    color: #060150;
    font-size: 32px;
    text-align: right;
    margin-top: -6px;
}

input[type="text" i]{
    outline: none;
}

/* imagens botões */
button img{
    margin-top: 3px;
    border: none;
    margin-left: 3px;    
}

button{
    border: none;
    background: none;
    cursor: pointer;
}

/* botão de igual */
.igual{
    position: absolute;
    background: rgba(7, 87, 242, 1);
    width: 72px;
    height: 196px;
    border: 2px solid;
    border-radius: 13.5px;
    margin-left: 11px;
    margin-top: 11px;
}

#op{
    position: absolute;
    z-index: 999;
    margin: 15px 10px;
    font-weight: bold;
    color: #060147;
}

h3{
    text-align: center;
    margin-bottom: 19px;
    margin-top: 20px;
}

/* carrossel haha */
.carrossel{
    overflow: hidden;
    height: 304px;
    width: 475px;
}

.cont-carr{
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
}

.cont-carr img{
    object-fit: cover;
    height: 300px;
    width: 475px;
    margin-right: 1px;
}

