@font-face {
  font-family: 'DePixelHalbfett';
  src: url('/DePixelHalbfett.ttf');
}
@font-face {
  font-family: 'Daydream';
  src: url('/Daydream.ttf');
}
@font-face {
  font-family: 'ComicSansMS3';
  src: url('/ComicSansMS3.ttf');
}
@font-face {
  font-family: 'Pusab';
  src: url('/Pusab.ttf');
}
@font-face {
  font-family: 'ComputerMalfunction';
  src: url('/Computer Malfunction Error.ttf');
}
@font-face {
  font-family: 'KrabbyPatty';
  src: url('/Krabby Patty.ttf');
}
@font-face {
  font-family: 'PokemonSolid';
  src: url('/Pokemon Solid.ttf');
}
@font-face {
  font-family: 'WindowsXPTahoma';
  src: url('/windows-xp-tahoma.ttf');
}
@font-face {
  font-family: 'IDrawedThis';
  src: url('/I drawed this.otf');
}
@font-face {
  font-family: 'HelpMe';
  src: url('/HelpMe-Yz7Lq.ttf');
}
@font-face {
  font-family: 'YouCanThinkPad';
  src: url('/You can think pad font.ttf');
}
@font-face {
  font-family: 'MSSansSerifBold';
  src: url('/ms_sans_serif_bold.woff2') format('woff2');
}
@font-face {
  font-family: 'MinecraftiaRegular';
  src: url('/Minecraftia-Regular.ttf');
}
@font-face {
  font-family: 'Papyrus';
  src: url('/papyrus.ttf');
}
@font-face {
  font-family: 'BryndanWriteBook';
  src: url('/BryndanWriteBook-nGPM.ttf');
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: white;
  font-family: 'Fira Sans', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

#glCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#text-container {
  position: relative;
  min-height: 100vh;
  overflow-y: auto;
  z-index: 1;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

#text-container:before {
  
}

#text-content {
  max-width: 800px;
  width: 100%;
  margin: 0;
  padding: 0 40px 60px;
  text-align: left;
  color: #111;
  font-weight: 400;
  background: transparent;
  box-sizing: border-box;
}

.text-scrim {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

#logo-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

#logo-container {
  position: relative;
  width: 400px;
  height: 100px;
  display: flex;
  align-items: center;
  transform-origin: left center;
}

#logo {
  width: 100%;
  transform-origin: left center;
}

.logo-letter {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  transition: color 0.5s, transform 0.5s, font-family 0.5s;
  position: relative;
  transform-origin: left center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

/* Style for the spacer element between 'i' and 'm' */
.letter-spacer {
  display: inline-block;
  height: 1em;
  vertical-align: middle;
}

.job-sections {
  margin: 2.5rem 0;
}

.job-section {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.job-title {
  display: none;
}

.job-content {
  max-height: none;
  overflow: visible;
  padding: 0;
}

.job-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.job-content p {
  margin-bottom: 1.25rem;
}

.job-content ul {
  padding-inline-start: 10px;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.job-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.apply-cta {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.apply-cta a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.apply-cta a:hover {
  text-decoration: underline;
}

.job-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 1.5rem;
}

.tab-button {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  padding: 10px 20px;
  color: #111;
  cursor: pointer;
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s;
  font-family: inherit;
}

.tab-button.active {
  background: rgba(0, 0, 0, 0.1);
}

.tab-button:hover {
  background: rgba(0, 0, 0, 0.08);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
  #text-container {
    padding: 20px 0;
  }
  
  #text-content {
    padding: 0 20px 60px;
  }
}