/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'pixelfont1';
  src: url('pixelfont1.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'alagard';
  src: url('alagard.ttf') format('truetype');
  
  
}

.top-right-gif {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 80px; /* or whatever size looks good */
  z-index: 9999;
  pointer-events: none; /* so it doesn't block clicks */
}


body {
  background-color: #0f0f0f;
  color: #e0e0e0;
  font-family: 'alagard', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  overflow-x: hidden;
  padding: 0 20px;
}

/* Floating Panel */
.panel {
  background-color: #222;
  color: #e0e0e0;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 750px;
  min-height: 100vh;
  padding: 1rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

/* Header Section */
.header {
  font-family: 'pixelfont1', sans-serif;
  text-align: left;
  margin-bottom: 1rem;
  border-bottom: .5px dotted #e0e0e0;
  padding-bottom: 0.5rem;
}

.header h1 {
  font-family: 'pixelfont1', sans-serif;
  font-size: 2rem;
  margin-bottom: 0rem;
  margin-top: 0rem;
}

/* Navigation Links */
nav ul {
  display: flex;
  gap: 1.5rem;
}

nav ul li {
  list-style: none;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Section Style */
.fullscreen {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  padding: 1rem 0;
}

.center {
  text-align: left;
}

h1, h2 {
  font-family: 'pixelfont1', sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
}

a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Add a dotted line between sections */
.fullscreen:not(:last-child) {
  border-bottom: .5px dotted #e0e0e0;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}



/* Portfolio Section */
.portfolio {
  display: flex;
  border-bottom: 1px dotted #888; /* Dotted line, light gray color */
  padding-bottom: 1rem; /* Optional: space above the line */
  margin-bottom: 1rem;  /* Optional: space below the line */
  gap: 1rem;
  justify-content: center; /* Center the content horizontally */
}

/* TV Container */
.tv-container {
  position: relative; /* Required to position the video inside */
  width: 100%;
  max-width: 700px; /* Adjust the width to control the size of the TV */
  display: flex;
  justify-content: center; /* Center the TV image */
  align-items: center; /* Center the TV image vertically */
  
  z-index: 1;
}

.tv-image {
  width: 100%;
  height: 500px;
  max-width: 800px; /* TV image size */
  border: none;
  z-index: 1;
  
}

/* Video Container Positioned on top of TV */
.video-container {
  position: absolute; /* Position it on top of the TV */
  top: 50;
  left: 100;
  width: 100;
  height: 100;
  z-index: 0; /* Ensure it's above the TV image */
}

video {
  width: 320px;
  height: 350px; /* Make video cover the entire TV */
  object-fit: cover; /* Ensure the video covers the screen area */
  border: none;
  z-index: 0;
  
}

/* Grid container for project links */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: .5;
  margin-top: 2rem;
}

/* Project link images */
.project-link img {
  max-width: 100px; /* Shrink the image */
  height: auto;
  display: block;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.project-link img:hover {
  transform: scale(1.25); /* optional little hover effect */
}

.welcome {
  text-align: left;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted #888;
}

.welcome h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.welcome p {
  font-size: 1rem;
  color: #ccc;
}









