* {
    box-sizing: border-box !important;
}

body {
    margin: 0;
    padding: 0;
    background: #233637;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

html {
    font-size: 125%;
}

.camera {
    width: 20.5rem;
    height: 15.5rem;
    background-color: #d6d6d6;
    border-radius: 10%;
    box-shadow: 0 1rem 1.5rem -1.3rem black;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens {
    width: 12.5rem;
    height: 12.5rem;
    background-color: #f5f5f5;
    box-shadow: 0 .8rem 0 0 #c0c0c0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.inner-lens {
    width: 10.5rem;
    height: 10.5rem;
    background-color: #00695c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.inner-lens-2 {
    width: 0;
    height: 0;
    border-top: 3.1rem solid green;
    border-right: 3.1rem solid rgb(0, 99, 0);
    border-bottom: 3.1rem solid rgb(0, 88, 0);
    border-left: 3.1rem solid rgb(0, 99, 0);
    border-radius: 50%;
}

.flash {
    position: absolute;
    width: 2rem;
    height: 2rem;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 .4rem 0 0 gray;
    right: 1.5rem;
    top: 1.5rem;
}

.button {
    position: absolute;
    width: 3rem;
    height: .5rem;
    background: #009587;
    border-radius: 6rem;
    left: 1.6rem;
    top: -.5rem;
}


