/* Reset default margins/padding, use border-box */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Let html/body take full viewport height, set a background color */
html,
body {
  width: 100%;
  height: 100%;
  background-color: #000;
  font-family: Arial, sans-serif;
  color: #fff;
}

/* Banner/header styling */
.site-banner {
  width: 100%;
  background-color: #333;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.site-banner h1 {
  margin: 0;
  font-size: 2em;
  letter-spacing: 2px;
  font-family: "Trebuchet MS", sans-serif; /* or any “classy/fun” font */
  color: #fff;
  margin-bottom: 10px; /* spacing below the title */
}
/* Contact link styling within banner */
.contact-link a {
  color: #fff; 
  text-decoration: none;
  font-size: 1em;
  padding: 8px 16px;
  background-color: #444; 
  border-radius: 4px;
}
.contact-link a:hover {
  background-color: #555;
}

/* Main container for image + video */
.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 80px); /* subtract banner height to center content better */
  justify-content: center;
  padding: 10px;
}

/* The big image */
.full-image {
  width: 70vw;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  margin: 20px 0;
}

/* The video below the image */
.xmas-video {
  width: 70vw;
  max-width: 800px;
  height: auto;
  margin: 20px 0;
  border: 2px solid #444;
  border-radius: 4px;
}

/* Make it look good on smaller mobile screens */
@media (max-width: 768px) {
  .full-image,
  .xmas-video {
    width: 90vw;
    margin: 10px 0;
  }

  .site-banner h1 {
    font-size: 1.5em;
  }
  .contact-link a {
    font-size: 0.9em;
  }
}
