@import url("https://fonts.googleapis.com/css2?family=Inter");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono");
* {
  margin: 0px;
  padding: 0px;
  min-width: 0px;
  min-height: 0px;
  box-sizing: border-box; }

body {
  font-family: "Inter", "Space Grotesk", "Helvectica", "Arial";
  font-size: 15px; }

code {
  font-family: "JetBrains Mono";
  color: #864AF9;
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word; }

p {
  line-height: 25px; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #332941;
  min-height: 100px;
  color: white;
  padding: 10px; }
  .navbar h1 {
    text-transform: capitalize; }

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  background-color: #864AF9;
  color: white;
  border: none;
  border-radius: 8px;
  box-shadow: #3B3486 0px 6px 0px;
  transition: 0.5s;
  text-decoration: none;
  font-family: "Inter", "Space Grotesk", "Helvectica", "Arial"; }
  .page-btn:hover {
    scale: 1.2;
    translate: 0px -3px;
    color: white; }

a {
  color: #1e90ff;
  /* Dodger Blue color */
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease; }

a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #1e90ff;
  /* Dodger Blue color */
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out; }

a:hover {
  color: #ff4500;
  /* OrangeRed color on hover */ }

a:hover::before {
  transform: scaleX(1); }

.heading-link {
  text-transform: capitalize; }
