:root{
	--bg-color: #000;
	--pure-white-color: #fff;
	--pure-white-color: #fff;
	--rich-black-color: #0A0E13;
	--philippine-gray-color: #8f8f8f;
	--orange-color: #ef9a00;
	--raisin-black-color: #222325;
}

.figtree-regular {
	font-family: "Figtree", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.figtree-bold {
	font-family: "Figtree", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.parkinsans-regular {
	font-family: "Parkinsans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.parkinsans-bold {
	font-family: "Parkinsans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

body{
	margin:0;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	font-size: 20px;
	background: var(--bg-color);
	color: var(--pure-white-color);
	min-width: 320px;
}

.bg {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	position: fixed;
}

a {
	color: var(--pure-white-color);
}

.btn {
	border-radius: 17px;
	padding-left: 20px;
	padding-right: 20px;
	text-transform: uppercase;
}

.btn:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: pulse512 1.5s infinite;
}

@keyframes pulse512 {
 0% {
  box-shadow: 0 0 0 0 var(--orange-color);
 }

 70% {
  box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
 }

 100% {
  box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
 }
}

header .title {
	font-size: 33px;
}

@media (min-width: 576px){
	header .title {
		font-size: 50px;
	}
}

@media (min-width: 768px){
	header .title {
		font-size: 60px;
	}
}

.codeclipboard span.brand-one,
header .sub-title {
	color: var(--philippine-gray-color);
}

.logo {
	max-height: fit-content;
	max-width: 50px;
}

.highlight {
	text-transform: uppercase;
	color: var(--orange-color);
	background-color: rgba(111, 111, 111, 0.2);
	border: 1px solid var(--philippine-gray-color);
	border-radius: 30px;
	padding: 6px 10px;
	display: inline-block;
	line-height: 1;
}

@media (max-width: 768px){
	.highlight {
		font-size: 15px;
	}
}

.card {
	background: linear-gradient(135deg, var(--raisin-black-color) 0%, rgba(21, 21, 21, 0) 100%);
	border: 1px solid var(--philippine-gray-color);
	color: var(--pure-white-color);
	padding: 17px;
}

.card-title {
	font-size: 26px;
}

footer {
	font-size: 12px;
}

.language-switch-container {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 20;
}

.language-switch-container .language-switch {
  display: inline-block;
  width: 60px;
  height: 30px;
  transform: rotate(0deg) translateX(0px) translateY(0px);
}

.language-switch-container .language-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.language-switch-container .language-switch input:checked + .slider:before {
  transform: translateX(-30px);
}

.language-switch-container .language-switch input:checked + .slider .dark-icon {
  color: var(--rich-black-color);
  transition: all 0.8s ease 0s;
}

.language-switch-container .language-switch input:checked + .slider .dark-icon:hover {
  animation: none;
  transform: none;
}

.language-switch-container .language-switch input:checked + .slider .light-icon {
  color: rgba(148, 148, 148, 0.5);
  transition: all 0.8s ease 0s;
}

.language-switch-container .language-switch input:checked + .slider .light-icon:hover {
  color: rgba(148, 148, 148, 0.9);
}

.language-switch-container .language-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  border: 1px solid var(--philippine-gray-color);
  background-color: rgba(148, 148, 148, 0.1);
  transition: all 0.4s ease 0s;
  padding: 0 5px;
}

.language-switch-container .language-switch .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  background-color: var(--pure-white-color);
  left: 31px;
  top: 1px;
  box-shadow: rgba(10, 14, 19, 0.3) 0px 2px 4px;
  border-radius: 50%;
  transition: all 0.4s ease 0s;
}

.language-switch-container .language-switch .icon {
  font-size: 12px;
  color: var(--pure-white-color);
  position: absolute;
  transition: all 0.8s ease 0s;
}

.language-switch-container .language-switch .light-icon {
  right: 0.4rem;
  color: var(--rich-black-color);
}

.language-switch-container .language-switch .dark-icon {
  left: 0.46rem;
  color: rgba(148, 148, 148, 0.5);
}

.language-switch-container .language-switch .dark-icon:hover {
  color: rgba(148, 148, 148, 0.9);
}