@font-face {
  font-family: 'ProLamina';
  src: url('fonts/ProLamina.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Example usage */
body {
  font-family: 'ProLamina', Arial, sans-serif;
  /* ...existing code... */
}

body {
  margin: 0;
  background: url('images/bg.jpg') center center / cover no-repeat,
    radial-gradient(
      circle at 20% 80%,
      #120458cc 0%,
      #000000cc 50%,
      #2d1b69cc 100%
    );
  font-family: 'ProLamina';
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.2) 70%,
    transparent 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transition: transform 0.1s ease;
}

.pulse {
  position: fixed;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: pulse 1s ease-out forwards;
}

@keyframes pulse {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }

  100% {
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}

.page_container {
  max-width: 65vw;
  top: 28px;
  margin: 0 auto 60px;
  padding: 20px;
  border: 1px solid rgba(0, 128, 46, 0.28); /* Darker green border */
  border-radius: 16px;
  background: rgba(0, 128, 46, 0.18); /* Darker green-tinted glass */
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #00ff5a; /* Bright programming green for high contrast */
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  padding-top: 10px;
  position: relative;
  line-height: 1.13rem;
}

/* Only the image gets the glassy border effect */
.page_container img {
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.picture_01 {
  float: right;
  width: 160px;
  border-radius: 16px;
  margin: 0;
}

.picture_02 {
  width: 290px;
  border-radius: 16px;
  margin: 0 20px 0 0;
  float: left;
}

li {
  margin-bottom: 10px;
}
