html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	
}
body{
    background: var(--primary-color);
}
*{box-sizing:border-box;}

:root{
    --primary-color: #edf2fc;
    --scondary-color: #212121;
}
.dark-theme{
    --primary-color: #000106;
    --scondary-color: #fff;
}



.calculator{
    
    width: 100%;
    max-width: 400px;
    margin: 100px auto;
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 0 5px #999999;
    
}
.heading{
    color: var(--scondary-color);
}

#icon {
    width: 35px;
    cursor: pointer;
}
.screen{
    background-color: var(--scondary-color);
    width: 100%;
    min-height: 100px;
    text-align: right;
    font-size: 24px;
    padding: 10px;
    padding-top: 20px;
}
#result{
    color: var(--primary-color);
}
.cal-buttons{
    background: var(--primary-color);
    padding: 15px;
}
ul#buttons{
    list-style-type: none;
    display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    
}
ul#buttons li{
    font-size: 24px;
    color: var(--primary-color);
    background: var(--scondary-color);
    /* border: 1px solid black; */
    width: 20%;
    margin:10px 2.5%;
    padding-top: 18px;
    height: 65px;
    border-radius: 50%;
    font-weight: bold;
   cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}
ul#buttons li:hover,ul#buttons li:visited{
    background: var(--primary-color);
    color: var(--scondary-color);
}
ul#buttons li:active{
    background: var(--primary-color);
}
li#equals{
width: 100% !important;
border-radius: 10px !important;
}