added welcome page

This commit is contained in:
Dhanush
2025-08-21 11:34:26 +05:30
parent 05141df39d
commit ef962f417c
2 changed files with 62 additions and 0 deletions

48
styles.css Normal file
View File

@@ -0,0 +1,48 @@
/* Reset default margin and padding */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
color: #2c3e50;
font-size: 3rem;
margin-bottom: 1.5rem;
background: linear-gradient(45deg, #3498db, #9b59b6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradient 3s ease infinite;
background-size: 200% 200%;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}