@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500&display=swap");
:root {
  --background: #f6f6f6;
  --background-shade: #f2f2f2;
  --bg: #1bb834;
  --bg-thick: #16a32e;
  --bg-shade: #b9ffc5;
  --color: #414141;
}
* {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  transition: all 0.4s ease;
}
#feed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#feed img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(1.175);
}
input.form-control {
  padding: 12px;
}
::placeholder {
  color: #999 !important;
}
.btn-supreme,
.btn-supreme:hover,
.btn-supreme:focus {
  background-color: #1bb834;
  color: #fff !important;
  position: relative;
}
.btn-supreme:hover,
.btn-supreme:focus,
.btn-supreme:disabled,
.btn-supreme:active {
  background-color: #16a32e !important;
}
.btn-supreme:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: rotate(0deg) translateY(-50%);
  animation: spin 0.8s linear infinite reverse;
  transition: opacity 0.6s ease;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-right-color: transparent;
}
@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(359deg);
  }
}
.btn-supreme:disabled:after {
  opacity: 1;
}
.text-supreme {
  color: #1bb834;
}
[data-theme="dark"] {
  --background: #212529;
  background-color: var(--background);
  color: #ccc;
  --color: #ccc;
}
[data-theme="dark"] .bg-white {
  background-color: #292d32 !important;
}
[data-theme="dark"] #feed {
  opacity: 0.1;
}
[data-theme="dark"] input.form-control {
  background-color: var(--background) !important;
  color: var(--color) !important;
  border: none;
}
@media (prefers-color-scheme: dark) {
  body:not([data-theme="light"]) {
    --background: #212529;
    background-color: var(--background);
    color: #ccc;
    --color: #ccc;
  }
  body:not([data-theme="light"]) .bg-white {
    background-color: #292d32 !important;
  }
  body:not([data-theme="light"]) #feed {
    opacity: 0.1;
  }
  body:not([data-theme="light"]) input.form-control {
    background-color: var(--background) !important;
    color: var(--color) !important;
    border: none;
  }
}
@media screen and (min-width: 768px) {
  .cast {
    box-shadow: 0 0 10px -7px #444;
  }
}

.snowflake {
  color: #fff;
  font-size: 12px;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
}

.size1 {
  font-size: 10px;
}

.size1 {
  font-size: 14px;
}

.size1 {
  font-size: 16px;
}

.size1 {
  font-size: 18px;
}

.size1 {
  font-size: 20px;
}

@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }

  100% {
    top: 100%;
  }
}

@-webkit-keyframes snowflakes-shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
}

@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }

  100% {
    top: 100%;
  }
}

@keyframes snowflakes-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(80px);
  }
}

.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}

.snowflake:nth-of-type(0) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}

.snowflake:nth-of-type(1) {
  left: 10%;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}

.snowflake:nth-of-type(2) {
  left: 20%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}

.snowflake:nth-of-type(3) {
  left: 30%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}

.snowflake:nth-of-type(4) {
  left: 40%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}

.snowflake:nth-of-type(5) {
  left: 50%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}

.snowflake:nth-of-type(6) {
  left: 60%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}

.snowflake:nth-of-type(7) {
  left: 70%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}

.snowflake:nth-of-type(8) {
  left: 80%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}

.snowflake:nth-of-type(9) {
  left: 90%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}

.snowflake:nth-of-type(10) {
  left: 25%;
  -webkit-animation-delay: 2s, 0s;
  animation-delay: 2s, 0s;
}

.snowflake:nth-of-type(11) {
  left: 65%;
  -webkit-animation-delay: 4s, 2.5s;
  animation-delay: 4s, 2.5s;
}
