@font-face {
  font-family: "Allura";
  src: url("fonts/Allura-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100vw;
  /* Fallback for older browsers */
  min-height: 100vh;
  height: 100vh;
  /* Modern browsers with dvh support */
  min-height: 100dvh;
  height: 100dvh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: #a9d9e0;
  background:
    linear-gradient(217deg, rgb(11 12 16 / 100%), rgb(11 12 16 / 0%) 70.71%),
    linear-gradient(127deg, rgb(11 30 16 / 100%), rgb(11 30 16 / 0%) 70.71%),
    linear-gradient(336deg, rgb(11 12 30 / 100%), rgb(11 12 30 / 0%) 70.71%);
}

/* =========================================================================== */
/*  NAVBAR                                                                     */
/* =========================================================================== */

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  padding: 16px;
  padding-bottom: 0;
  margin: 0;
  flex-shrink: 0;
  background: transparent;
}

.signature {
  font-family: "Allura", cursive;
  color: #c5c6c7;
  font-size: 52px;
  line-height: 1;
  width: 300px;
  height: fit-content;
  display: inline;
  background: transparent;
}

/* =========================================================================== */
/*  CONTENT                                                                    */
/* =========================================================================== */

/* Content container - scrollable */
.content-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  width: 100%;
  height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 24px;
  gap: 16px;
}

/* Ensure smooth scrolling within the container */
.content-container {
  scroll-behavior: smooth;
}