/* General Page Styling */
body {
  font-family: 'Roboto', sans-serif;
  color: #2c3e50;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f5f5f5;
  background-image: radial-gradient(#558cc2 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Header */
#header {
  background: #2c3e50;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

#header h1 {
  margin: 10px 0 0;
  font-size: 2.2rem;
}

#header h2 {
  margin: 10px 0 0;
  font-size: 2rem;
}

#help {
  text-align: center;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.logo-row img {
  height: 50px;
}

/* Main Content */
#content {
  width: 90%;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
}

#picture {
  text-align: center;
  margin: 20px 0;
}

.profile-pic {
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.caption {
  font-size: 0.9em;
  color: #7f8c8d;
}

.video-frame {
  display: flex;
  justify-content: center;
}

.video-frame iframe {
  width: min(100%, 720px);
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Project List */
.project-list {
  list-style: none;
  padding-left: 0;
}

.project-list li {
  margin: 8px 0;
}

.project-list a {
  color: #2980b9;
  font-weight: bold;
  transition: color 0.3s;
}

.project-list a:hover {
  color: #1abc9c;
}

/* Footer */
#footer {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  background: #2c3e50;
  color: #fff;
  font-size: 0.9em;
}
