/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    color: #000000;
    padding: 20px;
}

/* Header */
header {
    background-color: black;
    color: #77068b;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}

/* Navigation */
nav a {
    color: #ff00e1;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    margin-bottom: 40px;
    background: #ff00ee;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 15px;
    color: #000000;
}


/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}


.project-card {
    background-color: #ff00f7;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 6px solid #2c3e50;
    border-radius: 8px;
}

.project-card h3 {
    margin-bottom: 8px;
}

.project-card a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.project-card a:hover {
    text-decoration: underline;
}

.video-container {
  width: 100%;
  max-width: 640px; /* Optional max size for big screens */
  margin: 20px auto; /* Center + vertical spacing */
  padding: 0 15px;   /* Left and right padding on small screens */
  box-sizing: border-box; /* Make padding count in width */
  background-color: #000000;
}

video {
  width: 100%;    /* Make video fill container width */
  height: auto;   /* Keep aspect ratio */
  display: block; /* Remove inline gaps */
  border-radius: 8px; /* Optional: smooth corners */
  box-shadow: 0 2px 10px rgb(0, 0, 0); /* Optional: subtle shadow */
  background-color: #ff00e1;
}

