/* style.css */

/* === Base styling === */
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background-color: #f9f9f9;
  color: #222;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Header === */
header {
  padding: 2rem 1rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

header p {
  font-size: 1rem;
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}

/* === Video section === */
.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-container h4 {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #444;
}

video,
canvas {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 10px;
  background: black;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* === Footer === */
footer {
  font-size: 0.875rem;
  font-weight: 300;
  color: #666;
  text-align: center;
  max-width: 800px;
  padding: 2rem 1rem;
  border-top: 1px solid #ddd;
  line-height: 1.5;
}
