:root {
    --text-color: #F03C97;
    --text-p-color: #F67102;
    --text-footer-color: #000000;
    --headline-color: #3D4FD3;
    --header-backcolor: #A8ECEC;
    --sectionone-backcolor: #FFEF8A;
    --welcome-backcolor: rgba(250, 250, 250, 0.5);
    --overlay-backcolor: rgba(255, 255, 255, 0.5);
    --footer-backcolor: var(--header-backcolor);
    --border-color:var(--text-color);
    --switcher-color: rgb(99, 98, 98);
  }
  [data-theme='dark'] {
    --text-color: #FDE33C;
    --text-p-color: #F67102;
    --text-footer-color: #ffffff;
    --headline-color: #808DF0;
    --header-backcolor: #00A7A4;
    --sectionone-backcolor: #6957C0;
    --welcome-backcolor: #87BBAE;
    --overlay-backcolor:rgba(0, 0, 0, 0.2);
    --footer-backcolor: var(--header-backcolor);
    --border-color:var(--text-p-color);
    --switcher-color: rgb(156,156,156);
}

/*********************
    switch light-dark mode
    https://www.w3schools.com/howto/howto_css_switch.asp

*********************/
 /* The switch - the box around the slider */
 .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--switcher-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--switcher-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--switcher-color);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 
/*********************
    switch light-dark mode
    styl 2

*********************/
.switcher-box{
  display: flex;
  line-items: center;
}
.switcher-description{
  display: flex;
}
.switcher-description p, .switcher-description i{
  margin-right: 15px;
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-color);
}