* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #2b2b2b;
}
body.active{
background: white;
}
#toggle {
position: relative;
display: block;
width: 320px;
height: 160px;
border-radius: 160px;
background: #222;
transition: 0.5s;
cursor: pointer;
box-shadow: inset 0 8px 60px rgba(0, 0, 0, 1),
inset 0 8px 8px rgba(0, 0, 0, 1),
inset 0 -4px 4px rgba(0, 0, 0, 1);
}
#toggle.active{
background: white;
box-shadow: inset 0 2px 60px rgba(0, 0, 0, 0.1),
inset 0 2px 8px rgba(0, 0, 0, 0.1),
inset 0 -4px 4px rgba(0, 0, 0, 0.2);
}
#toggle .indicator{
position:absolute;