/* From Uiverse.io by rishichawda */ 
/* The switch - the box around the slider */
#theme-toggle-button {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3em;
    cursor: pointer;
  }
  
  /* Hide default HTML checkbox */
  #toggle {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  #container,
  #patches,
  #stars,
  #button,
  #sun,
  #moon,
  #cloud {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.25s;
  }
  
  /* night sky background */
  #toggle:checked + svg #container {
    fill: #2b4360;
  }
  
  /* move button to right when checked */
  #toggle:checked + svg #button {
    transform: translate(28px, 2.333px);
  }
  
  /* show/hide sun and moon based on checkbox state */
  #sun {
    opacity: 1;
  }
  
  #toggle:checked + svg #sun {
    opacity: 0;
  }
  
  #moon {
    opacity: 0;
  }
  
  #toggle:checked + svg #moon {
    opacity: 1;
  }
  
  /* show or hide background items on checkbox state */
  #cloud {
    opacity: 1;
  }
  
  #toggle:checked + svg #cloud {
    opacity: 0;
  }
  
  #stars {
    opacity: 0;
  }
  
  #toggle:checked + svg #stars {
    opacity: 1;
  }

.tema{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 430px){
    .id1{
            width: 0vh;
            height: 0vh;
            background-color: rgb(170, 217, 255);
            justify-content: center;
            align-items: center;
            position: relative;
            transform: translateX(17vh) translateY(2vh);
    }
    .id2{
        width: 0vh;
            height: 0vh;
            background-color: rgb(22, 35, 109);
            box-shadow: 0.5vh 0.5vh 1vh rgb(5, 5, 5), 0vh 0vh 1vh inset  rgb(6, 16, 77);
            display: flex;
            border-radius: 5vh;
            justify-content: center;
            align-items: center;
            position: relative;
            transform: translateX(0vh);
    }
    .ex1{
        width: 3vh;
        height: 3vh;
        background-color: rgb(109, 189, 255);
        box-shadow: 0px 0px 1vh 0.2vh rgba(0, 0, 0, 0), 0px 0px 0.5vh inset rgb(9, 67, 114);
        border-radius: 50%;
        display: flex;
        transition: none;
        align-items: center;
        justify-content: center;
        transform: translateY(0vh) translateX(0vh);
        position: relative;
    }
    .ex2{
        width: 3vh;
        height: 3vh;
        border-radius: 50%;
        background-color: rgb(22, 35, 109);
        box-shadow: 0px 0px 1vh 0.05vh inset rgb(255, 217, 0);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: none;
        transform: translateX(17vh);
        position: relative;
    }
    }

@media (min-width: 431px) and (max-width: 768px){
.id1{
        width: 0vh;
        height: 0vh;
        background-color: rgb(170, 217, 255);
        justify-content: center;
        align-items: center;
        position: relative;
        transform: translateX(25vh) translateY(1.2vh);
}
.id2{
    width: 0vh;
        height: 0vh;
        background-color: rgb(22, 35, 109);
        box-shadow: 0.5vh 0.5vh 1vh rgb(5, 5, 5), 0vh 0vh 1vh inset  rgb(6, 16, 77);
        display: flex;
        border-radius: 5vh;
        justify-content: center;
        align-items: center;
        position: relative;
        transform: translateX(25vh) translateY(-1.2vh);
}
.ex1{
    width: 3vh;
    height: 3vh;
    background-color: rgb(109, 189, 255);
    box-shadow: 0px 0px 1vh 0.2vh rgba(0, 0, 0, 0), 0px 0px 0.5vh inset rgb(9, 67, 114);
    border-radius: 50%;
    display: flex;
    transition: none;
    align-items: center;
    justify-content: center;
    transform: translateY(0vh) translateX(0vh);
    position: relative;
}
.ex2{
    width: 3vh;
    height: 3vh;
    border-radius: 50%;
    background-color: rgb(22, 35, 109);
    box-shadow: 0px 0px 1vh 0.05vh inset rgb(255, 217, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    transform: translateX(0vh);
    position: relative;
}
}

