body {
    margin: 0px;
    background-color: lightgray;
    font-family: Tahoma, Verdana, sans-serif;
}
#main {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}
#phone {
    background-color: white;
    height: fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border-radius: 40px;
}
#cameraarea {
    height: 100px;
    width: auto;
    display: flex;
    align-items: center;
}
#camera {
    bottom: -15px;
    height: 15px;
    width: 15px;
    border-radius: 100px;
    background-color: black;
    margin-left: auto;
    margin-right: 10px;
}
#mic {
    height: 10px;
    width: 100px;
    background-color: rgb(66, 66, 66);
    border: solid rgb(0, 0, 0) 1px;
    border-radius: 100px;
    margin-right: auto;
}
#buttonarea {
    height: 100px;
    width: auto;
}
#button {
    position: relative;
    bottom: -15px;
    margin-left: auto;
    margin-right: auto;
    height: 70px;
    width: 70px;
    border-radius: 100px;
    border: solid grey 3px;
}
#Calculator {
    background-color: black;
    height: 670px;
    width: 420px;
}
#viewport {
    height: 160px;
    width: auto;
    font-size: 100px;
    color: white;
    position: relative;
}
#result {
    position: absolute;
    bottom: 15px;
    right: 25px;
    padding-right: 25px;
}
#buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    margin-top: 0px;
}
.button {
    height: 90px;
    width: 90px;
    margin: 5px;
    padding: 0px;
    border: 0px;
    border-radius: 100px;
    font-size: 35px;
    text-align: center;
}
.special {
    background-color: rgb(162, 161, 161);
    color: black;
}
.calc {
    background-color: orange;
    color: white;
}
.num {
    background-color: rgb(80, 80, 80);
    color: white;
}
.num0 {
    width: 190px;
}
.calc:hover {
    background-color: rgb(255, 179, 38);
}
.calcactive {
    background-color: white;
    color: orange;
}
.num:hover {
    background-color: rgb(109, 109, 109);
}
.numactive {
    background-color: rgb(148, 148, 148);
}
.special:hover {
    background-color: rgb(194, 193, 193);
}
.specialactive {
    background-color: rgb(223, 223, 223);
}
footer {
    background-color: lightslategray;
    text-align: center;
    padding: 5px;
    width: 100%;
}
footer img {
    height: 50px;
    width: 50px;
}