/* Fonts */

@font-face {
  font-family: 'site_regular';
  src: url('../fonts/InterDisplay-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'site_bold';
  src: url('../fonts/InterDisplay-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

/* Blinking animation */

.blink {
  display: inline-block;
  animation: blink-animation 1s steps(1, start) infinite;
}

@keyframes blink-animation {
  0% { visibility: visible; }
  50% { visibility: hidden; }
  100% { visibility: visible; }
}

/* Formatting */

.large-bold-mono {
  font-family: monospace;
  font-weight: bold;
  font-size: 2rem; /* Adjust size as needed */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'site_bold', sans-serif;
  color: #FFFFFF;
}

body{
  background-color: #2E3440;
  color: #d8dee9;
  font-family: 'site_regular', sans-serif;
  padding-top: 150px;
  padding-left: 500px;
  padding-right: 500px;
}

p, ul, main {
  font-family: 'site_regular', sans-serif;
}

/* Mobile styles */
@media (max-width: 1600px) {
  body {
    padding-top: 150px;
    padding-left: 250px;
    padding-right: 250px;
  }
}

/* Mobile styles */
@media (max-width: 1200px) {
  body {
    padding-top: 150px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

a {
  color: #88C0D0; /* Nord8 - soft cyan */
  text-decoration: none;
}

a:hover {
  color: #81A1C1; /* Nord9 - muted blue */
}

hr {
  border: none;
  border-top: 1px solid #4C566A; /* Nord3 - subtle line */
}
/* nord-minimal.css */

body {
  background-color: #2E3440; /* Nord0 - dark blue/grey */
  color: #ECEFF4;            /* Nord6 - white text */
  font-family: serif;
  margin: 0;
}

a {
  color: #88C0D0; /* Nord8 - soft cyan */
  text-decoration: none;
}

a:hover {
  color: #81A1C1; /* Nord9 - muted blue */
}

hr {
  border: none;
  border-top: 1px solid #4C566A; /* Nord3 - subtle line */
}
