-
Join the Web4 Revolution
+
+
+
+ Join the Web4 Revolution
+
+
+
Join us on our journey to the decentralized internet. Watch the video below to learn more about our mission and products.
+
+
+
-
+
-
-
@@ -32,11 +44,38 @@
}
}
- /* Ensure video is centered */
+ /* Responsive iframe for YouTube video */
+ .responsive-iframe {
+ width: 100%;
+ height: 0;
+ padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
+ position: relative;
+ border: none;
+ }
+ .responsive-iframe iframe {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ }
+
+ /* Ensure content aligns properly */
.flex.justify-center {
display: flex;
justify-content: center;
}
+
+ /* Style for the button */
+ .blinking-effect {
+ animation: blink 1.5s step-start infinite;
+ }
+
+ @keyframes blink {
+ 50% {
+ opacity: 0.5;
+ }
+ }