This commit is contained in:
2026-06-08 14:41:21 -04:00
parent cfeb74b03b
commit 76479e727a
2 changed files with 16 additions and 9 deletions
Binary file not shown.
+16 -9
View File
@@ -23,18 +23,25 @@
font-family: 'Inter', sans-serif; font-family: 'Inter', sans-serif;
} }
h1 { .video-container {
font-size: clamp(2.5rem, 8vw, 6rem); width: 100%;
font-weight: 900; max-width: 960px;
color: #ffffff; padding: 1rem;
text-align: center; }
letter-spacing: -0.03em;
line-height: 1.1; video {
text-transform: uppercase; width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 40px rgba(0,0,0,0.6);
} }
</style> </style>
</head> </head>
<body> <body>
<h1>something something stuff coming soon</h1> <div class="video-container">
<video controls autoplay loop muted playsinline>
<source src="Whiplash%20doggo%20edition%20%23memes%20%20%23shorts.mp4" type="video/mp4">
</video>
</div>
</body> </body>
</html> </html>