* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  color: #111111; 
  font-family: Arial, Helvetica, sans-serif; 
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 2rem;
  padding: 2rem;
  font-family: "Times New Roman", Times, serif; 
}

.video {
  width: min(90vw, 700px); 
  height: auto;
  display: block;
}

.hero-text-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;       
  color: #fff;     
}

.insta-link {
  text-decoration: none; 
  color: rgb(255, 255, 255); 
  font-size: clamp(1rem, 4vw, 3.5rem);                            
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.insta-link:hover {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)); 
}

h1 {
    font-weight: normal; 
    letter-spacing: 0.08em; 
    color: #fff !important;
}