.theme-light {
    --color-primary: #0060df;
    --color-secondary: #ffffff;
    --color-accent: #670e82;
    --font-color: #000000;
    --background-color: #e7e7e7;
    --transparent-color: #ffffff;
}
.theme-dark {
    --color-primary: hsl(154, 86%, 51%);
    --color-secondary: #000000;
    --color-accent: #12cdea;
    --font-color: #ffffff;
    --background-color: #212221;
    --transparent-color: #000000;
}
@font-face {
    font-family: Gotham;
    src: url(../../fonts/Gotham-Black.otf);
}
@font-face {
    font-family: "Bariol Regular";
    src: url(../fonts/Bariol_Regular.otf);
}
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(
        var(--background-color) 2px,
        var(--transparent-color) 2px
    ) !important;
    background-size: 50px 50px;
}
#full {
    background-image: url("../../img/backgroundtringmain.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
video[poster] {
    object-fit: fill;
}
/* .container {
  display: flex;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container h1 {
  color: var(--font-color);
  font-family: sans-serif;
}
.container button {
  color: var(--font-color);
  background: var(--color-primary);
  padding: 10px 20px;
  border: 0;
  border-radius: 5px;
} */

/* .text{
    color: var(--font-color);
} */
/*
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}




.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0px 15px #2020203d;
  background: white url('https://i.ibb.co/FxzBYR9/night.png');
  background-repeat: no-repeat;
  background-position: center;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
  background: white url('https://i.ibb.co/7JfqXxB/sunny.png');
  background-repeat: no-repeat;
  background-position: center;
}


.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} */
