File size: 6,778 Bytes
03e275e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PRISM Project</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
min-height: 100vh;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
display: flex;
justify-content: center;
align-items: center;
margin: 0;
color: white;
overflow-x: hidden;
}
.container {
position: relative;
z-index: 1;
width: 100%;
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
}
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 4rem;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
border: 1px solid rgba(255, 255, 255, 0.18);
transform: translateY(0);
transition: transform 0.3s ease;
text-align: center;
}
.glass-card:hover {
transform: translateY(-5px);
}
.btn-container {
display: flex;
justify-content: space-between;
padding: 0 4rem;
margin-top: 3rem;
}
.btn {
position: relative;
padding: 1rem 2.5rem;
font-size: 1.1rem;
font-weight: 500;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
overflow: hidden;
border: none;
min-width: 200px;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
transform: translateX(-100%);
transition: transform 0.3s ease;
}
.btn:hover::before {
transform: translateX(0);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.btn-single {
background: linear-gradient(45deg, #4f46e5, #7c3aed);
color: white;
}
.btn-multiple {
background: linear-gradient(45deg, #10b981, #059669);
color: white;
}
.animated-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
overflow: hidden;
}
.floating-circle {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}
.circle1 {
animation: moveCircle1 15s ease-in-out infinite;
}
.circle2 {
animation: moveCircle2 20s ease-in-out infinite;
}
.circle3 {
animation: moveCircle3 25s ease-in-out infinite;
}
@keyframes moveCircle1 {
0% { transform: translate(-50%, -50%); }
50% { transform: translate(-40%, -40%); }
100% { transform: translate(-50%, -50%); }
}
@keyframes moveCircle2 {
0% { transform: translate(-50%, -50%); }
50% { transform: translate(-60%, -40%); }
100% { transform: translate(-50%, -50%); }
}
@keyframes moveCircle3 {
0% { transform: translate(-50%, -50%); }
50% { transform: translate(-40%, -60%); }
100% { transform: translate(-50%, -50%); }
}
.title-gradient {
background: linear-gradient(to right, #fff, #a5b4fc);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-size: 3rem; /* Increased font size */
font-weight: 900; /* Bolder font weight */
letter-spacing: 1px;
text-align: center;
margin-bottom: 1.5rem;
}
.subtitle {
color: #94a3b8;
font-size: 1.1rem;
line-height: 1.6;
max-width: 600px;
margin: 0.5rem auto;
text-align: center;
}
@media (max-width: 768px) {
.btn-container {
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 0 1rem;
}
.glass-card {
padding: 2rem;
}
.btn {
width: 100%;
max-width: 300px;
}
}
</style>
</head>
<body>
<div class="animated-bg">
<div class="floating-circle circle1" style="width: 300px; height: 300px; background: #4f46e5; left: 50%; top: 50%;"></div>
<div class="floating-circle circle2" style="width: 200px; height: 200px; background: #10b981; left: 50%; top: 50%;"></div>
<div class="floating-circle circle3" style="width: 150px; height: 150px; background: #7c3aed; left: 50%; top: 50%;"></div>
</div>
<div class="container animate_animated animate_fadeIn">
<div class="glass-card">
<h1 class="title-gradient animate_animated animate_fadeInDown">Lock Screen Classifier</h1>
<p class="subtitle animate_animated animatefadeIn animate_delay-1s">
Welcome to our <strong>PRISM</strong> Project
</p>
<p class="subtitle animate_animated animatefadeIn animate_delay-1s">
Let's classify the images with Proper Reasoning for doing so...
</p>
<div class="btn-container animate_animated animatefadeInUp animate_delay-2s">
<button class="btn btn-single" onclick="window.open('/single', '_blank')">
Single Image
</button>
<button class="btn btn-multiple" onclick="window.open('/multiple', '_blank')">
Multiple Images
</button>
</div>
</div>
</div>
</body>
</html> |