@font-face {
  font-family: "VNF-Optima-Regular";
  src: url("../fonts/VNF-Optima-Regular.ttf") format("truetype");
  /* You can also provide other formats like woff, woff2, eot for better cross-browser support */
}

body {
  font-family: "VNF-Optima-Regular", sans-serif;
  /* Use 'sans-serif' as a fallback in case the custom font is not available */
}

.project-logo {
  position: fixed;
  left: 10px;
  top: 10px;
  width: 150px;
  height: 150px;
  user-select: none;
}

.investor-logo {
  position: fixed;
  left: 10px;
  bottom: 0px;
  width: 150px;
  height: 150px;
  user-select: none;
}

img {
  pointer-events: none; /* Disable pointer events */
}

@media (max-width: 768px) {
  .project-logo {
      width: 70px;
      height: 70px;
  }

  .investor-logo {
      width: 70px;
      height: 70px;
  }
}


