body {background-color: black; }

body {margin: 0; }
.navbar a {
  color: white;
  padding: 12px 10px;
  text-decoration: none;
  text-align: right;
}
.navbar a:hover {
  background: red;
  color: black;
}

.navbar {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Center vertically if needed */
}

/* Using the HTML elemement selector */
nav {
  background-color: red;
  position: fixed; /* Keeps it at the top-center */
  top: 0;
  width: 100%;
  height: 8;
  display: flex;
  justify-content: flex-start; /* Aligns items to the center */
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img, video {
  display: block;
}

.video-container {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;    /* Vertical centering (requires a height) */
  height: 100vh;          /* Optional: sets container to full viewport height */
}

.containter {
  text-align: center;
}

.container {
  display: flex;
  gap: 5px; /* Precise 5x space between each image */
}

footer {
  background-color: red;
  color: white;
  padding: 10px 80px; /* 20px top/bottom, 40px left/right */
}

/* Style for mobile devices (screens 600px wide or smaller) */
@media screen and (max-width: 600px) {
  .container {
    width: 100%; /* Switch from multi-column to single-column */
    padding: 10px;
  }
}