body, html {
    height: 50%;
    color: white;
}

body{
    background: rgb(0, 0, 0);
}
.for_footer{
    background: rgb(226, 43, 150);
    margin-top: 60px;
}
.powerby-size{
    font-size:1em;
}
h1{
    margin-top: 30px;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h6{
    margin-bottom: -25px;
    margin-left: 3px;
    margin-right: -5px;
    color: rgb(255, 255, 255);
    font-style: italic;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-shadow:
    0 0 1px #fff,
    0 0 1px #fff,
    0 0 2px rgb(155, 155, 155),
    0 0 5px rgb(142, 140, 141),
    0 0 1px rgb(249, 249, 249),
    0 0 8px rgb(255, 22, 111),
    0 0 15px rgb(172, 172, 172),
    0 0 11px rgb(131, 131, 131);
}
.neon-text{
    color: rgb(224, 30, 104);
    text-shadow:
    0 0 7px #fff,
    0 0 1px #fff,
    0 0 2px rgb(224, 30, 104),
    0 0 15px rgb(224, 30, 104),
    0 0 10px rgb(170, 24, 255),
    0 0 20px rgb(224, 30, 104),
    0 0 50px rgb(224, 30, 104),
    0 0 51px rgb(170, 24, 255);
}

/* CALCULATOR DESIGN */
.calc-container{
    border: 4px solid rgb(226, 43, 150);
    border-radius: 20px;
    background: rgba(88, 85, 91, 0.782);
    width: 24rem;
    height: 80vh;
    min-height: 550px;
    box-shadow: 0px 5px 20px 0px rgb(226, 43, 150), -8px 0px 20px -3px rgb(170, 24, 255);
}
.calc-numbers-container{
    border: 4px solid rgb(163, 30, 108);
    border-radius: 19px;
    background: rgb(226, 43, 150);
    opacity: 0.9;
    padding: 3px;
    margin: auto;
    margin-bottom: 5px;
    box-shadow: 0px 5px 20px 0px rgb(226, 43, 150);
}
.b{
    margin: auto;
}
hr{
    color: hotpink;
    text-align: center;
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
}
.calc-results-container{
    margin-top: 10px;
    margin-bottom: 15px;
    border: 4px solid rgb(163, 30, 108);
    border-radius: 19px;
    background: rgb(226, 43, 150);
    width: 330px;
    height: 90px;
    min-height: 90px;
}
.calc-results-container2{
    border: 1px solid rgb(226, 43, 150);
    border-radius: 15px;
    background: rgb(27, 17, 23);
    opacity: 0.7;
    width: 300px;
    max-height: 80px;
    box-shadow: 0px 5px 20px 0px rgb(226, 43, 150), -8px 0px 20px -3px rgb(170, 24, 255);
}
/* The Solar panel they used to have */
.calc-solar{
    margin: auto;
    margin-top: 5px;
    border: 1px solid rgb(255, 0, 128);
    border-radius: 10px;
    background: rgb(76, 1, 47);
    width: 50%;
    height: 5vh;
    min-height: 20px;
}
.btn-1{
    background: rgba(0, 0, 0, 0.493);
    border: 0px solid rgba(0, 0, 0, 0.438); 
    border-radius: 30px;
    font-size: 1.8em;
    width: 90px;
    margin: 2px;
    padding: 5px;
    color: white;
}
.btn-1:hover{
    text-shadow:
    0 0 7px #fff,
    0 0 1px #fff,
    0 0 2px rgb(224, 30, 104),
    0 0 15px rgb(224, 30, 104),
    0 0 10px rgb(170, 24, 255),
    0 0 20px rgb(224, 30, 104),
    0 0 50px rgb(224, 30, 104),
    0 0 51px rgb(170, 24, 255);
    box-shadow: 0px 5px 20px 0px rgb(226, 43, 150), -8px 0px 20px -3px rgb(170, 24, 255);
    transform: scale(1.1);
    transition: transform .2s;
}
.span-two {
    grid-column: span 2;
}
.output {
    grid-column: 1 / -1;
    background-color: rgba(0, 0, 0, .75);
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    flex-direction: column;
    padding: 10px;
    word-wrap: break-word;
    word-break: break-all;
}  
.output .previous-operand {
    color: rgba(255, 255, 255, .75);
    font-size: 1.5rem;
} 
.output .current-operand {
    color: white;
    font-size: 2rem;
}