*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url('bg.jpg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #000000;
  font-family: 'Georgia', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0vh;
  margin-top: 8vh;
}

.logo {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(45px, 12vw, 170px);
  font-weight: bold;
  color: #000000;
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
  padding-top: 10vh;
}

.tagline {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #111;
}

.link {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: #111;
  font-family: 'Georgia', serif;
  font-weight: bold;
  text-decoration: none;
  margin-top: 0;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.link:hover {
  text-decoration: underline;
}

.yt-thumb {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  width: 320px;
}

.yt-thumb img {
  width: 100%;
  display: block;
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  pointer-events: none;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 10px 10px 28px;
  font-size: 0.75rem;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 900px) {
  .logo {
    font-size: 100px;
  }

  .container {
    margin-bottom: 25vh;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo {
    font-size: 55px;
  }

  .container {
    margin-bottom: 20vh;
    gap: 8px;
  }

  .link, .tagline {
    font-size: 0.9rem;
  }
}

/* Uncomment if you want a CTA link */
/*
.cta {
  font-size: 0.85rem;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}
*/
