Spaces:
Running
Running
File size: 845 Bytes
777b97c |
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 |
/* Responsive Design */
@media (max-width: 640px) {
.w-72 {
width: 95%;
}
.h-72 {
height: 350px;
}
}
/* Main Container */
body {
background: linear-gradient(135deg, #2c3e50, #1f2937);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: "Arial", sans-serif;
color: #fff;
}
/* Main Content Wrapper */
.main-content {
border: 5px solid rgba(255, 255, 255, 0.2);
padding: 2rem;
border-radius: 1rem;
width: 90%;
max-width: 500px;
background-color: rgba(0, 0, 0, 0.3);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
text-align: center;
}
/* Title */
.main-title {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 1.5rem;
color: #fff;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
|