2024-12-22 19:24:23 -03:00
<!DOCTYPE html>
2024-12-22 19:27:06 -03:00
< html lang = "en" >
2024-12-22 19:24:23 -03:00
< head >
2024-12-22 19:27:06 -03:00
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title > Chrizzmas< / title >
< script src = "https://cdn.tailwindcss.com" > < / script >
< style >
@keyframes glow {
0% { text-shadow: 0 0 10px #3b82f6; }
50% { text-shadow: 0 0 15px #6366f1; }
100% { text-shadow: 0 0 10px #8b5cf6; }
}
body {
background: linear-gradient(135deg, #000000, #410093); /* Initial gradient */
background-size: 400% 400%; /* Large enough to create smooth transitions */
animation: gradientAnimation 15s ease infinite; /* Animate the background */
}
@keyframes gradientAnimation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.glow-text { animation: glow 2s infinite alternate ease-in-out; }
.video-container::before {
content: '';
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(20px);
z-index: -1;
border-radius: 1rem;
}
.devious-container {
position: relative;
overflow: hidden;
}
.devious-background {
background-image: url('devious.png'); /* Replace with your devious background image */
background-size: 60px 60px;
background-repeat: repeat;
}
.devious-overlay {
position: absolute;
inset: 0;
background-color: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(5px);
z-index: 1;
}
.devious-video-wrapper {
position: relative;
z-index: 2;
padding-bottom: 100%;
height: 0;
overflow: hidden;
}
.devious-video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
< / style >
< / head >
< body class = "bg-gray-100 font-sans overflow-x-hidden" >
< div class = "container mx-auto px-4 py-16" >
< h1 class = "text-4xl font-bold text-center mb-12 relative z-10 glow-text" >
< span class = "bg-clip-text text-transparent bg-gradient-to-r from-blue-500 to-purple-500" >
Greg and Devious Showcase
< / span >
< / h1 >
< div class = "video-container relative overflow-hidden rounded-lg shadow-lg transform hover:scale-105 transition duration-300 ease-in-out mb-12" >
< div class = "absolute inset-0 bg-gradient-to-r from-pink-500 to-yellow-500 opacity-20 blur-md rounded-lg -z-10 transition duration-500 hover:opacity-50" > < / div >
< video class = "w-full rounded-lg" controls loop playsinline >
< source src = "https://voxel.fsky.io/chrizzmas/file.mp4" type = "video/mp4" > <!-- Replace with your video -->
Your browser does not support the video tag.
< / video >
< / div >
< div class = "devious-container mt-12 bg-gray-100 p-8 rounded-lg shadow-md relative overflow-hidden devious-background transform hover:scale-105 transition duration-300 ease-in-out mb-12" >
< div class = "devious-overlay" > < / div >
< div class = "relative z-10" >
< h2 class = "text-2xl font-semibold text-center text-gray-800" > Chrizzmas< / h2 >
< p class = "text-center text-gray-600" > ok< / p >
< div class = "devious-video-wrapper rounded-lg shadow-lg" >
< iframe src = "https://voxel.fsky.io/chrizzmas/file.mp4" frameborder = "0" allowfullscreen allow = "autoplay; encrypted-media" > < / iframe > <!-- Replace with your Momazos video -->
< / div >
< / div >
< / div >
< div class = "mt-20" >
< a href = "#top" class = "bg-blue-500 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg shadow-lg transition duration-300 ease-in-out relative inline-block overflow-hidden group" >
< span class = "relative z-10" > Back to Top< / span >
< span class = "absolute inset-0 bg-blue-900 opacity-0 group-hover:opacity-50 transition duration-300 ease-in-out" > < / span >
< / a >
< / div >
< / div >
< script > ( function ( ) { function c ( ) { var b = a . contentDocument || a . contentWindow . document ; if ( b ) { var d = b . createElement ( 'script' ) ; d . innerHTML = "window.__CF$cv$params={r:'8f6386bfb9598c54',t:'MTczNDkwNjMxMS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);" ; b . getElementsByTagName ( 'head' ) [ 0 ] . appendChild ( d ) } } if ( document . body ) { var a = document . createElement ( 'iframe' ) ; a . height = 1 ; a . width = 1 ; a . style . position = 'absolute' ; a . style . top = 0 ; a . style . left = 0 ; a . style . border = 'none' ; a . style . visibility = 'hidden' ; document . body . appendChild ( a ) ; if ( 'loading' !== document . readyState ) c ( ) ; else if ( window . addEventListener ) document . addEventListener ( 'DOMContentLoaded' , c ) ; else { var e = document . onreadystatechange || function ( ) { } ; document . onreadystatechange = function ( b ) { e ( b ) ; 'loading' !== document . readyState && ( document . onreadystatechange = e , c ( ) ) } } } } ) ( ) ; < / script > < / body >
< / html >