::-moz-selection {background: #FCC46A; color: #222222;}
::selection {background: #FCC46A; color: #222222;}

body{
    padding: 40vh 0 40vh;
    max-height: 40vh;
    background-color: #222222; 
    font-family: Consolas;
    text-align: center;
}


button {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms;
    overflow: hidden;
   }
   
   button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms
   }
   
   button:hover {
    color: #e8e8e8;
   }
   
   button:hover::before {
    width: 100%;
   }

   .switch {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 34px;
   }
   
   .switch input {
    display: none;
   }
   
   .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3C3C3C;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
   }
   
   .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #212121;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
   }
   
   input:checked + .slider {
    background-color: #3C3C3C;
   }
   
   input:focus + .slider {
    box-shadow: 0 0 1px #f2f2f2;
   }
   
   input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(85px);
   }
   
   /*------ ADDED CSS ---------*/
   .slider:after {
    content: 'English';
    color: #f2f2f2;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    font-size: 12px;
   }
   
   input:checked + .slider:after {
    content: 'Deutsch';
   }
   
   /*--------- END --------*/
.time{
    display: block;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 5%;
}
.calendar{
    color: #f2f2f2;
    font-size: 3rem;
    text-align: center;
}
.clock{
    color: #f2f2f2;
    font-size: 1rem;
    text-align: center;
}
h1{
    color: #f2f2f2;
    text-align: center;
}
.content{
    display: block;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 33.5%;
}
a{
    color: #fff;
    text-decoration: underline;
}