Spaces:
Running
Running
File size: 1,438 Bytes
2ee9c45 a6dbb25 2ee9c45 a6dbb25 2ee9c45 a6dbb25 |
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 |
.container {
/* max-width: 1200px; */
margin: 0 auto;
padding: 0.5rem;
background-color: #1a1a1a;
}
.header {
text-align: center;
margin-bottom: 3rem;
}
.header h1 {
font-size: 2rem;
color: #ffffff;
margin-bottom: 1rem;
font-weight: 700;
}
.header p {
color: #9ca3af;
font-size: 1.1rem;
}
.search-input {
background-color: #374151;
border: 2px solid #3d3d3d;
border-radius: 40px;
font-size: 1.1rem;
color: #ffffff;
width: 60%;
margin: 0 auto;
transition: all 0.3s ease;
}
.search-input {
background-color: #374151 !important;
border: 2px solid #3d3d3d !important;
border-radius: 40px !important;
font-size: 1.1rem !important;
color: #ffffff !important;
transition: all 0.3s ease;
width: 60%; /* Default width for larger screens (PC) */
margin: 0 auto; /* Center the input */
}
/* Media query for smartphones */
@media only screen and (max-width: 768px) {
.search-input {
width: 90% !important; /* 100% width on smartphones */
}
.gallery {
height: 400px;
}
}
.gallery {
margin-top: 2rem;
background-color: #2d2d2d;
border-radius: 12px;
}
.footer {
margin-top: 3rem;
padding: 0.5rem;
background-color: #2d2d2d;
border-radius: 12px;
text-align: center;
}
.footer a {
color: #6366f1;
text-decoration: none;
transition: color 0.3s ease;
} |