
@media (prefers-color-scheme: dark) {
  /* Dark theme styles go here */
  :root {
    --primary-color: #9A97F3;
    --secondary-color: #818cab;
    --font-color: #e1e1ff;
    --bg-color: #161625;
    --button-border: #c3c1f8;
    --heading-color: #818cab;
    color-scheme: light dark;
  }
}

@media (prefers-color-scheme: light) {
  /* Light theme styles go here */
  :root {
    --primary-color: #9A97F3;
    --secondary-color: #818cab;
    --font-color: black;
    --bg-color: white;
    --button-border: #141414;
    --heading-color: #818cab;
    color-scheme: light dark;
  }
}

/* Icons */

.right-arrow-icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  stroke: var(--font-color);
  fill: var(--font-color);
}

.footer-icon {
  width: 20px;
  height: 20px;
  stroke: var(--font-color);
  fill: var(--font-color);
}

a.icon-link {
  transition: transform 200ms ease-in-out;
}

a.icon-link:hover {
  cursor: pointer;
  margin: 0;
  transform: scale(1.5);
}


/* Navbar Styling */

.navbar {
  width: 100%;
  padding: 12px 50px 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  color: var(--font-color);
}

.navlinks {
  padding: 40px 50px 30px 50px;
  display: flex;
  justify-content: right;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  gap: 16px;
}

.nav-title-link {
  color: var(--font-color);
  text-decoration: none;
}

.nav-title-link:hover {
  text-decoration: underline;
}



/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 1200px) {
  .navlinks {
    padding: 25px 50px 30px 50px;
    flex-direction: column-reverse;
    align-items: end;
    gap: 8px;
  }
}

/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 1100px) {
  .navbar {
    padding: 20px 20px;
    background-color: var(--bg-color);
  }

  .navlinks {
    padding: 25px 50px 30px 50px;
    flex-direction: row;
    gap: 16px;
  }
}

/* Footer Styling */

#footer {
  width: 100%;
  display: flex;
  padding: 30px 50px;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 800px) {


  #footer {
    padding: 20px 20px;
  }
}

@media only screen and (max-width: 600px) {
  .navbar {
    padding: 20px 20px 60px 20px;
  }
  .navlinks {
    padding: 25px 50px 30px 50px;
    flex-direction: column-reverse;
    align-items: end;
    gap: 8px;
  }
}


/* Button Styling */

a.button {
  padding: 8px 16px;
  border: 1px dashed var(--button-border);
  border-bottom: 1px solid var(--button-border);
  /* border-radius: 50px; */
  color: var(--font-color);
  text-decoration: none;
  width: max-content;
  display: flex;
  gap: 5px;
  align-items: center;
}

a.button:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  cursor: pointer;
}

.multi-link {
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
}




/* Link Styling */
a.no-underline {
  text-decoration: none;
  color: var(--font-color)
}

a.no-underline:hover {
  text-decoration: underline;
  cursor: pointer;
}



