/*----- CSS Reset Started -----*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

/*----- CSS Reset ended -----*/
/*----- ScrollBar Style Started -----*/
::-webkit-scrollbar {
  width: 0.7rem;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, var(--primary-color));
  border-radius: 2rem;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, var(--secondary-color));
}

/*----- ScrollBar Style Ended -----*/
/*----- Body Style Started -----*/
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-2);
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/pixel_bg.png");
  background-size: cover;
  position: fixed;
}

/*----- Body Style Ended -----*/
/*----- NAVBAR Style started  -----*/
#navbar {
  width: 100vw;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#navbar nav {
  background-color: transparent;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid var(--secondary-color);
  padding: 0 2rem;
  width: 80rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

#nav-left a span {
  font-size: 2.5rem;
  font-family: "Dancing Script", cursive;
  color: var(--primary-color);
}

#nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#nav-right .nav-links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}
#nav-right .nav-links li {
  border-radius: 0.5rem;
}
#nav-right .nav-links li a {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--white-color);
  padding: 0.8rem 1rem;
  border-radius: 2rem;
  position: relative;
}
#nav-right .nav-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 2rem;
  transition-duration: 0.5s;
  background-color: var(--primary-color);
  z-index: -1;
}
#nav-right .nav-links li a:hover {
  color: black;
}
#nav-right .nav-links li a:hover::before {
  width: 100%;
  transition-duration: 0.5s;
}

#hamburger-icon {
  cursor: pointer;
  display: none;
  z-index: 9999;
}
#hamburger-icon .line {
  width: 1.5rem;
  height: 0.1rem;
  background-color: white;
  border-radius: 0.4rem;
  transition: all 0.3s ease-in-out;
}
#hamburger-icon .l2 {
  margin: 0.4rem 0;
  width: 1rem;
}

#theme-icon {
  height: 2rem;
  width: 4rem;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  border-radius: 2rem;
  display: flex;
  justify-content: left;
  padding: 0.25rem;
  cursor: pointer;
}
#theme-icon .icon {
  height: 100%;
  width: 1.5rem;
  border-radius: 2rem;
  background-color: var(--black-color);
}

.active #theme-icon {
  justify-content: right;
}
.active #theme-icon .icon {
  height: 100%;
  width: 1.5rem;
  border-radius: 2rem;
  background-color: var(--white-color);
}

#hamburgerMenu {
  display: none;
}

.active #hamburger-icon .line {
  background-color: black;
}

.open #hamburger-icon .l2 {
  transform: translateX(2.8rem);
  background-color: transparent;
}
.open #hamburger-icon .l1 {
  transform: rotate(45deg) translate(4px, 8px);
}
.open #hamburger-icon .l3 {
  transform: rotate(-45deg) translate(4px, -8px);
}

.active .open #hamburger-icon .line {
  background-color: white;
}
.active .open #hamburger-icon .l2 {
  background-color: transparent;
}

/*----- NAVBAR Style ended  -----*/
#new-portfolio {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 9999;
  background-color: var(--bg-1);
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  animation: new-portfolio 2s infinite;
}
#new-portfolio a {
  font-size: 1rem;
  color: var(--primary-color);
}
#new-portfolio a:hover {
  color: var(--secondary-color);
}

@keyframes new-portfolio {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 10px var(--primary-color);
  }
  50% {
    transform: translateY(1rem);
    box-shadow: 0 0 20px var(--primary-color);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 10px var(--primary-color);
  }
}
/*----- Section: Home Style Started -----*/
#home {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-1);
  z-index: -9;
}

#home-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80rem;
  height: 85vh;
}

#home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#home-content > p {
  color: var(--secondary-color);
  font-family: monospace;
  font-size: 2rem;
}
#home-content samp {
  color: var(--white-color);
  font-size: 4.5rem;
  margin: 2rem 0;
}
#home-content .dynamic-txt p {
  color: var(--secondary-color);
  font-size: 2.5rem;
  border-right: 0.3rem solid var(--primary-color);
}
#home-content .dynamic-txt p span {
  color: var(--primary-color);
}

#downIcon {
  width: 80rem;
  height: 7.5rem;
  display: flex;
  justify-content: center;
}
#downIcon .arrow i {
  font-size: 3rem;
  color: var(--secondary-color);
  animation: arrow 2s infinite;
}
#downIcon .arrow i:hover {
  color: var(--primary-color);
}

/*----- Section: Home Style Ended -----*/
/*----- Section: About Me Style Started -----*/
#aboutMe {
  width: 100vw;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

#aboutMe-content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
#aboutMe-content .content-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
#aboutMe-content .content-left .links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-right: 6rem;
}
#aboutMe-content .content-left .links i {
  color: var(--secondary-color);
  font-size: 2rem;
}
#aboutMe-content .content-left .links i:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}
#aboutMe-content .content-left .my-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 15rem;
  width: 15rem;
  border-radius: 1rem;
}
#aboutMe-content .content-left .my-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2.5px solid var(--primary-color);
  border-radius: 1.5rem;
  animation: rotate-border-1 10s linear infinite;
  z-index: -9;
}
#aboutMe-content .content-left .my-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2.5px solid var(--primary-color);
  border-radius: 1.5rem;
  animation: rotate-border-2 10s linear infinite;
  z-index: -9;
}
#aboutMe-content .content-left .my-img .img {
  height: 100%;
  width: 100%;
  background-color: rgb(219, 218, 223);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: rotate(45deg);
}
#aboutMe-content .content-left .my-img .img img {
  height: 165%;
  filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.4));
  transform: rotate(-45deg);
}
#aboutMe-content .content-right {
  position: relative;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 40rem;
}
#aboutMe-content .content-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-1);
  border-radius: 0.5rem;
  z-index: -9;
}
#aboutMe-content .content-right h4 {
  color: var(--white-color);
  font-size: 2rem;
  line-height: 3.2rem;
}
#aboutMe-content .content-right .headingSecond {
  display: none;
}
#aboutMe-content .content-right p {
  color: var(--secondary-color);
  font-size: 1.3rem;
  line-height: 2rem;
}
#aboutMe-content .content-right p span {
  color: var(--primary-color);
}
#aboutMe-content .content-right p::first-letter {
  font-size: 2rem;
}
#aboutMe-content .content-right .btn {
  cursor: pointer;
  justify-content: left;
}
#aboutMe-content .content-right .btn a::before {
  left: 0;
}

/*----- Section: About Me Style Ended -----*/
/*----- Section: Education Style Started -----*/
#education {
  position: relative;
  width: 100vw;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}
#education::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-1);
  z-index: -9;
}

#education-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#education-content {
  position: relative;
  width: 55rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-left: 3rem;
  border-left: 0.05rem dashed var(--primary-color);
}
#education-content .content {
  position: relative;
  width: 52rem;
  padding: 2.5rem;
  background-color: var(--bg-2);
  border-radius: 0.5rem;
  z-index: -9;
}
#education-content .content::before {
  content: "";
  position: absolute;
  top: 47%;
  right: calc(100% + 2.5rem);
  height: 1rem;
  width: 1rem;
  border: 0.1rem solid var(--primary-color);
  border-radius: 50%;
  background-color: var(--primary-color);
}
#education-content .content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 0rem);
  height: 0.1rem;
  width: 3rem;
  border-top: 0.05rem dashed var(--primary-color);
}
#education-content .content .date {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
#education-content .content .date i {
  font-size: 1rem;
  color: var(--primary-color);
}
#education-content .content .date p {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 0.1rem;
}
#education-content .content .deg {
  margin: 1.4rem 0;
}
#education-content .content .deg p {
  color: var(--white-color);
  font-size: 1.5rem;
}
#education-content .content .para {
  color: var(--secondary-color);
  font-size: 1.3rem;
  line-height: 2rem;
}
#education-content .content .para p span {
  color: var(--primary-color);
}

/*----- Section: Education Style Ended -----*/
/*----- Section: Skills Style Started -----*/
#skills {
  position: relative;
  width: 100vw;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--border-color);
}

#skills-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 3rem;
}
#skills-content .content {
  width: 11rem;
  height: 16rem;
  border-radius: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
#skills-content .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8rem;
  background-color: var(--bg-1);
  z-index: -9;
}
#skills-content .content img {
  height: 3rem;
  margin-bottom: 1rem;
  filter: grayscale(100%);
}
#skills-content .content span {
  font-size: 1.2rem;
  color: white;
  margin: 1rem 0;
}
#skills-content .content p {
  font-size: 1.3rem;
  color: var(--primary-color);
}
#skills-content .content:hover img {
  filter: grayscale(0%);
  transform: scale(1.2);
  transition-duration: 1s;
}
#skills-content .tailwind img {
  height: 2rem;
}
#skills-content .mongoDB img {
  height: 4rem;
}

/*----- Section: Skills Style Ended -----*/
/*----- Section: Projects Style Started -----*/
#projects {
  width: 100vw;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#projects-content {
  width: 80rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 4rem;
}
#projects-content .project {
  position: relative;
  width: 35rem;
  display: flex;
  gap: 3rem;
  border-radius: 0.5rem;
  padding: 3rem 0 2rem 2.5rem;
}
#projects-content .project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 85%;
  background-color: var(--bg-1);
  border-radius: 0.5rem;
  z-index: -9;
}
#projects-content .project .project-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#projects-content .project .project-left .para {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#projects-content .project .project-left .para h2 {
  color: var(--primary-color);
  font-family: monospace;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
#projects-content .project .project-left .para p {
  color: var(--secondary-color);
  font-size: 1.3rem;
  line-height: 2rem;
}
#projects-content .project .project-left .btn {
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
#projects-content .project .project-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#projects-content .project .project-right img {
  position: relative;
  width: 13rem;
}
#projects-content .project .project-right img:nth-child(1) {
  rotate: 20deg;
  transform: translateY(2.3rem);
  z-index: 1;
}
#projects-content .project .project-right img:nth-child(2) {
  transform: translateX(-2rem);
  z-index: 2;
}
#projects-content .project .project-right img:nth-child(3) {
  rotate: -20deg;
  transform: translateY(-2.3rem);
  z-index: 1;
}
#projects-content .project:hover {
  transition-duration: 1s;
}
#projects-content .project:hover::before {
  box-shadow: 4px -4px 8px rgba(0, 0, 0, 0.2), -4px 4px 8px rgba(0, 0, 0, 0.2);
  background-color: var(--bg-2);
}
#projects-content .project:hover .btn a,
#projects-content .project:hover img {
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.2);
}

/*----- Section: Projects Style Ended -----*/
/*----- Section: Blogs Style Started -----*/
#blogs {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}
#blogs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-1);
  z-index: -9;
}

#blogs-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#blogs-content h3 {
  font-size: 4rem;
  animation: color-changer 0.5s infinite;
}

/*----- Section: Blogs Style Ended -----*/
/*----- Section: Freelance Style Started -----*/
#freelance {
  position: relative;
  width: 100vw;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#freelance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/hire_me_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.4;
  z-index: -9;
}

#freelance-container {
  width: 55rem;
}
#freelance-container h3 {
  color: var(--white-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
#freelance-container h3 span {
  color: var(--primary-color);
}
#freelance-container p {
  color: var(--secondary-color);
  font-size: 1.3rem;
  text-align: center;
}
#freelance-container .btn {
  justify-content: center;
  margin-top: 2.5rem;
}
#freelance-container .btn a::before {
  left: 0;
}

/*----- Section: Freelance Style Ended -----*/
/*----- Section: Contact Me Style Started -----*/
#contactMe {
  width: 100vw;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contactMe-content {
  height: 100%;
  width: 80rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
#contactMe-content .content-left {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
#contactMe-content .content-left p {
  font-size: 3rem;
  color: var(--secondary-color);
}
#contactMe-content .content-left p span {
  color: var(--primary-color);
}
#contactMe-content .content-left .paraSecond {
  display: none;
}
#contactMe-content .content-left .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
#contactMe-content .content-left .contact-details .details {
  display: flex;
  align-items: center;
}
#contactMe-content .content-left .contact-details .details span {
  font-size: 1.2rem;
  margin-left: 1.3rem;
  color: var(--white-color);
}
#contactMe-content .content-left .contact-details .details i {
  font-size: 1.4rem;
  color: var(--primary-color);
}
#contactMe-content .content-right {
  position: relative;
  width: 32rem;
  border-radius: 0.5rem;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#contactMe-content .content-right h1 {
  font-family: monospace;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-align: center;
}
#contactMe-content .content-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-1);
  z-index: -9;
}

#contactForm {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
#contactForm .form-control {
  margin-bottom: 0.5rem;
  position: relative;
}
#contactForm .form-control label {
  font-size: 1rem;
  color: var(--secondary-color);
}
#contactForm .form-control input {
  width: 100%;
  color: var(--white-color);
  background-color: transparent;
  font-family: monospace;
  font-size: 1rem;
  margin-top: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid grey;
  border-radius: 0.5rem;
  caret-color: var(--primary-color);
  opacity: 0.8;
}
#contactForm .form-control input::-moz-placeholder {
  opacity: 0.4;
}
#contactForm .form-control input::placeholder {
  opacity: 0.4;
}
#contactForm .form-control input:focus {
  outline: 1px solid var(--primary-color);
}
#contactForm .form-control i {
  color: grey;
  position: absolute;
  top: 2.4rem;
  right: 0.8rem;
  visibility: hidden;
}
#contactForm .form-control small {
  color: rgba(255, 0, 0, 0.637);
  visibility: hidden;
  float: right;
  position: relative;
  top: 0.3rem;
}
#contactForm .form-control textarea {
  width: 100%;
  color: var(--white-color);
  background-color: transparent;
  font-family: monospace;
  font-size: 1rem;
  margin-top: 0.5rem;
  border: 1px solid grey;
  border-radius: 0.5rem;
  padding: 1rem 1.6rem;
  caret-color: var(--primary-color);
  opacity: 0.8;
}
#contactForm .form-control textarea:focus {
  outline: 1px solid var(--primary-color);
}
#contactForm .form-control textarea::-moz-placeholder {
  opacity: 0.4;
}
#contactForm .form-control textarea::placeholder {
  opacity: 0.4;
}
#contactForm .form-control.error input {
  border: 1px solid rgba(255, 0, 0, 0.637);
}
#contactForm .form-control.error input:focus {
  border: none;
}
#contactForm .form-control.error i.fa-circle-exclamation {
  color: rgba(255, 0, 0, 0.637);
  visibility: visible;
}
#contactForm .form-control.error small {
  visibility: visible;
}
#contactForm .form-control.error textarea {
  border: 1px solid rgba(255, 0, 0, 0.637);
}
#contactForm .submitBtn {
  font-family: "Oswald", sans-serif;
  color: var(--white-color);
  margin-top: 3rem;
  width: 100%;
  font-size: 1.3rem;
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  background-color: var(--secondary-color);
  z-index: 1;
}
#contactForm .submitBtn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background-color: var(--primary-color);
  transition-duration: 0.5s;
  border-radius: 0.5rem;
  z-index: -1;
}
#contactForm .submitBtn:hover {
  transition-duration: 0.5s;
  color: var(--black-color);
}
#contactForm .submitBtn:hover::before {
  width: 100%;
}

/*----- Section: Contact Me Style Ended -----*/
/*----- Footer Style Started -----*/
#footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  padding: 1rem 2rem;
  gap: 3rem;
  border-top: 2px solid var(--border-color);
}

#footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer-bottom p {
  font-size: 1rem;
  color: var(--secondary-color);
}

/*----- Footer Style Ended -----*/
/*----- Common Style Started -----*/
.btn {
  width: 100%;
  display: flex;
}
.btn a {
  position: relative;
  color: var(--white-color);
  background-color: var(--secondary-color);
  font-size: 1.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: lighter;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  z-index: 1;
}
.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  transition-duration: 0.5s;
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  z-index: -99;
}
.btn a:hover {
  color: var(--black-color);
}
.btn a:hover::before {
  width: 100%;
  transition-duration: 0.5s;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80rem;
}
.container .heading {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container .heading h2 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 1rem;
}
.container .heading hr {
  background-color: var(--primary-color);
  margin-top: 0.5rem;
  border: none;
  height: 0.1rem;
  width: 0;
  animation: line 2s infinite;
}

/*----- Common Style Ended -----*/
/*----- Animation Style Stated -----*/
@keyframes arrow {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 4rem;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes line {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes rotate-border-1 {
  0% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(160deg);
  }
  100% {
    transform: rotate(340deg);
  }
}
@keyframes rotate-border-2 {
  0% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(200deg);
  }
  100% {
    transform: rotate(380deg);
  }
}
@keyframes color-changer {
  0% {
    color: var(--secondary-color);
  }
  50% {
    color: var(--primary-color);
  }
  100% {
    color: var(--secondary-color);
  }
}
/*----- Animation Style Ended -----*/
/*----- Variables Started -----*/
:root {
  --primary-color: #E8BF96;
  --secondary-color: #999999;
  --border-color: #27272b;
  --white-color: white;
  --black-color: black;
  --bg-1: #1c1d20;
  --bg-2: #212125;
}

/*----- Variables Ended -----*//*# sourceMappingURL=index.css.map */