*{
    padding: 0;
    margin: 0;
    background-origin: padding-box;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 16px;
    background-color: #fdf7ed;
}

.calculator{
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.calc-container{
    background-color: #1d1d1d;

    width: 600px;
    height: auto;
    border: solid 4px #ff7c30;
    border-radius: 15px 15px 15px 15px;
}

.output{
    width: 100%;
    border-radius: 0 0 15px 15px;

}   

.operation{
    width: 600px;
    height: 70px;

    color: #878787;

    font-size: 1.9em;
    font-weight: bold;

    position: relative;
    overflow: hidden;
}
.operation .value{
    position: absolute;

    bottom: 5px;
    right : 10px;
    
    white-space: nowrap;
    overflow: hidden;
}

.result{
    width: 600px;
    height: 140px;

    color: #FFF;

    font-size: 2.6em;
    font-weight: bold;
    
    overflow: hidden;
    position: relative;

}

.result .value{
    position: absolute;

    top: 50%;
    transform: translateY(-50%);
    right : 10px;
    
    white-space: nowrap;
    overflow: hidden;
}


.input{
    background-color: #ff8a1c;

    border-radius: 0 0 9px 9px;
    /* border: 1px solid #1d1d1d; */
    height: 340px;
}

.row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.row button{
    width: 50px;
    height: 50px;

    font-size: 1.5em;

    border: none;
    border-radius: 50%;
    background-color: transparent;

    margin : 8px;

    cursor: pointer;
}

.row button:hover{
    font-weight: bold;
}

.row #calculate{
    color: #000;
    background-color: #ffc16f;
    width : 121px;
    border-radius: 10px;
}
.row #calculate:hover {
    background: #fff;
}
.row #delete{
    color: #2a00fc;
    /* background-color: #fc1302; */
}

#division, #multiplication, #subtraction, #addition {
    color: #2a00fc;
}

.input button span{
    font-size: 0.6em;
    position: absolute;
}

.active-angle{
    background-color: #1d1d1d !important;
    color: #ff7b00 !important;
    border-radius: 10px !important;
}

.active-angle:hover {
    background: #444343 !important;
}

.tornar {
	text-align: center;
    text-decoration: none;
    font-weight: 900;
    background-color: #f90;
    font-size: 1.2em;
    color: #fff;
}
.tornar:hover {
    font-size: 1.2em;
    background-color: #7EFF83;
    color: #451760;
}