@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap");

:root {
  --primary-color: rgb(242, 176, 77);
  --border-radius: 7px;
  --black-color: #0f0e0e;
  --blue-color: rgb(46, 44, 166);
  --black-text-color: #3d3d3d;
  --white-text-color: #f1f1f1;
  --white-background: #f1f1f1;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--black-color);
  color: var(--white-text-color);
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

pre code {
  font-family: "Fira Code", serif !important;
}

.wp-block-code {
  font-family: "Fira Code", "JetBrains Mono", "Courier New", monospace;
}

::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 20px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px;
  border: 3px solid #f1f1f1;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 10vw;
}

.section-header {
  max-width: 60%;
  margin-bottom: 2rem;
  text-align: start;
}

.section-header p {
  font-weight: 600;
  font-size: 2rem;
}

.section-header h2 {
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.page-not-found {
  background-color: var(--white-background);
  height: 40rem;
  color: var(--black-text-color);
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}

.not-found {
  max-width: 400px;
  margin: auto;
  text-align: center;
  padding-top: 10rem;
}

.not-found h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.not-found p {
  margin-bottom: 1rem;
}

.not-found p a {
  color: var(--primary-color);
}

@keyframes movebtn {
  0% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media only screen and (max-width: 900px) {
  .section-header {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 0.9rem;
  }

  .section-header p {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 560px) {
  .container {
    padding: 1rem 5vw;
  }

  .section-header {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 0.8rem;
  }

  .section-header p {
    font-size: 1.4rem;
  }
}

#scrollToTopBtn {
  background-color: var(--blue-color);
  display: none;
  position: fixed;
  bottom: 20px;
  right: 10vw;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  max-width: 50px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  animation: movebtn 3s ease-in-out infinite;
}

#scrollToTopBtn svg {
  fill: white;
}
