Spaces:
Running
Running
File size: 1,737 Bytes
566d814 bdcf69a 566d814 bdcf69a 566d814 bdcf69a 566d814 bdcf69a 566d814 bdcf69a 566d814 bdcf69a 566d814 bdcf69a 566d814 bdcf69a 566d814 bdcf69a 566d814 bdcf69a |
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 |
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: 'Inter', sans-serif;
background-color: #121212; /* Dark theme background */
color: #e0e0e0; /* Light gray text */
padding: 2rem;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
/* Headings */
h1 {
font-size: 24px;
font-weight: 600;
text-align: center;
color: #ffffff;
margin-bottom: 10px;
}
/* Paragraphs */
p {
color: #b0b0b0;
font-size: 16px;
line-height: 1.6;
text-align: center;
}
/* Card Container */
.card {
max-width: 650px;
padding: 20px;
background: #1e1e1e; /* Dark gray card background */
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
/* Smooth Hover Effect */
.card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
/* Last Paragraph Spacing Fix */
.card p:last-child {
margin-bottom: 0;
}
/* Buttons */
button {
background: linear-gradient(135deg, #6a11cb, #2575fc);
border: none;
padding: 12px 20px;
color: #fff;
font-size: 16px;
font-weight: bold;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
button:hover {
background: linear-gradient(135deg, #2575fc, #6a11cb);
transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 768px) {
body {
padding: 1rem;
}
.card {
padding: 15px;
}
h1 {
font-size: 20px;
}
p {
font-size: 14px;
}
}
|