*, *::before, *::after {box-sizing: border-box;}

html,body{
    margin: 0;
    height: 100%;
}

body{
    background-color: #1e1f23;
    display: flex;
    justify-content: center;
    align-items: center;

}
/* Size and Background  */
.toggle img
{
    width: 2000px;
    cursor: pointer;
}
.menu li img
{
    width: 100px;
    
}
/* Video - Tutorial */
.menu
{

    position: relative;
    width: 450px;
    height: 235px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu li{
    position: absolute;
    left: 0;
    list-style: none;
    transition: 0.5s;
    transition-delay: calc(0.1s * var(--i));
    transform-origin: 240px;
    transform: rotate(0deg) translateX(195px);
}
/* Efectoo de animacion */
.menu.active li
{

    transform: rotate(calc(360deg / 10 * var(--i)) ) translateX(0px);
}
.menu li a
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px ;
    height: 100px;
    color: var(--clr);
    /*border: 2px solid var(--clr);*/
    border-radius: 50%;
    font-size: 1.5em;
    transform: rotate(calc(360deg / -10 * var(--i)));
    transition: 1s;
}
.menu li a:hover{
    transition: 0;
    background: var(--clr);
    color: #333;
    box-shadow: 0 0 10px var(--clr),
    0 0 30px var(--clr),
    0 0 50px var(--clr); 
    /*opacity: 0.5;*/
}
.toggle:hover
{
    filter: grayscale(100%);
    box-shadow: 0 0 10px #fff; 
    /*opacity: 0.5;*/

}
/* Resto */
.menu .toggle
{
    position: relative;
    width: 100px;
    height: 100px;
    background: #2f363e;
    border: 2px solid #fff;
    border-radius: 50%;
    color:white;
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 10000;
    font-size: 2rem;
    transition: trasform 2.25s;
}

.logocontainer {
  position: relative;
  width: 100%;
  max-width: 100%;
    border-radius: 50%;
}
.logo_overlay {
  position: absolute; 
  bottom: 0; 
 /* background: rgb(0, 0, 0); */
  /*background: rgba(0, 0, 0, 0.5);  Black see-through */
  color: #f1f1f1; 
  width: 100%;
  height: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 10px;
  padding-top:20px;
  text-align: center;
  border-radius: 50%;
  vertical-align: middle;
 /*  transform: rotate(calc(360deg / -10 * var(--i)));*/
  
}
.logo_container:hover .logo_overlay {
  opacity: 1;
    transition: 0;
    background: var(--clr);
    color: #333;
    box-shadow: 0 0 10px var(--clr),
    0 0 30px var(--clr),
    0 0 50px var(--clr); 
}