20 lines
482 B
CSS
20 lines
482 B
CSS
/* This ensures that the container takes at least the full viewport height */
|
|
.min-vh-100 {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Optional: Add more custom styles if needed */
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #007bff; /* Bootstrap primary color or customize */
|
|
font-size: 2.5rem; /* Adjust size as needed */
|
|
}
|
|
|
|
.lead {
|
|
color: #6c757d; /* Bootstrap secondary color or customize */
|
|
font-size: 1.25rem; /* Adjust size as needed */
|
|
}
|
|
|