* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

h1, h2, h3, h4, h5, h6, a {
    color: #ffffff;
}

body {
    background-color: #0d0e0f;
    color: #d4d4d4;
}







/* EFFECTS */

/* Fade-in effect for body */
body {
  opacity: 1;
  filter: blur(0);
  transition: opacity 0.6s ease-in-out, filter 0.6s ease-in-out;
}

body.fade-in {
  opacity: 0;
  filter: blur(8px);
}


/* Image preview effect */
#image-preview {
  position: fixed;
  pointer-events: none;
  z-index: 1000;
  display: none;
  width: 220px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s ease-in-out;
}

#image-preview img {
  width: 100%;
  display: block;
  object-fit: cover;
}


/* LINKS SECTION */

.links li a {
  transition: color 0.3s ease;
}

.links li a ion-icon {
  font-size: 1.25rem;
}

.links li a:hover {
  color: #fff;
}