body {
  background-color: #f5f5f5;
  overflow: hidden;
  margin: 0;
  font-family: monospace;
  /* z-index: 100; */
  font-size: 1.3em;
  color: white;
}

.Content-Box {
  height: 20vh;
  width: 10vw;
  top: 0%;
  right: 0%;
  background-color: rgba(110,110,110,.3);
  opacity: 0.9;
  border: 1px solid black;
  filter: alpha(opacity=90);
  border-radius: 10px;
}

.Content-box h3, h4 {
  letter-spacing: .7px;
  word-spacing: 2.5px;
  text-align: center;
  color: black;
}

#overlay-1 {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-family: monospace;
  padding: 1em;
}

#overlay-2 {
    position: absolute;
    left: 85%;
    top: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: monospace;
    padding: 1em;
  }

  #overlay-3 {
    position: absolute;
    left: 80%;
    top: 70%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: monospace;
    padding: 1em;
  }

.toggle-button-cover
{
    display: table-cell;
    position: relative;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
}

.button-cover
{
    height: 100px;
    margin: 10px;
    background-color: none;
    background-blend-mode:darken;
    /* box-shadow: 0px 5px 10px -5px #c5d6d6; */
    border-radius: 4px;
}

.button-cover:before
{
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button-cover, .knobs, .layer
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button-toggle
{
    position: relative;
    top: 50%;
    width: 74px;
    height: 36px;
    margin: -20px auto 0 auto;
    overflow: hidden;
}

.button-toggle.r, .button-toggle.r .layer
{
    border-radius: 100px;
}

.button-toggle.b2
{
    border-radius: 2px;
}

#checkbox
{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs
{
    z-index: 2;
}

.layer
{
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

/* Button 1 */
#button-1 .knobs:before
{
    content: 'Obj';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: #03A9F4;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

#button-1 #checkbox:checked + .knobs:before
{
    content: 'Face';
    left: 42px;
    background-color: #4fc004;
}

#button-1 .checkbox:checked ~ .layer
{
    background-color: #fcebeb;
}

#button-1 .knobs, #button-1 .knobs:before, #button-1 .layer
{
    transition: 0.3s ease all;
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: rgb(89, 197, 240);
    padding: 16px 25px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 12px;
    margin: 20px 40px;
    transition-duration: 0.4s;
    cursor: pointer;
  }
  
  .button1 {
    border-radius: 10px;
    background-color: rgb(181, 234, 255);; 
    color: black; 
    border: none #f44336;
    width: 100px;
  }
  
  .button1:hover {
    background-color: #f44336;
    color: white;
  }