Skip to content

Commit

Permalink
Update main.css
Browse files Browse the repository at this point in the history
  • Loading branch information
burnt-exe authored Jun 14, 2024
1 parent 6bd144d commit 1827561
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ body, html {
color: #60A5FA; /* Light Blue */
}
.welcome-section {
background: url('https://source.unsplash.com/random/1600x900') no-repeat center center/cover;
background: #fff; /* White Background */
padding: 50px 20px;
color: #FFFFFF;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
color: #000; /* Black Text */
position: relative;
margin-bottom: 40px; /* Increased spacing between sections */
}
.welcome-section::before {
content: '';
Expand All @@ -32,6 +32,7 @@ body, html {
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 0;
display: none; /* Remove the overlay */
}
.welcome-section-content {
position: relative;
Expand All @@ -40,11 +41,13 @@ body, html {
.welcome-section h1 {
font-size: 2.5rem;
animation: fadeInDown 1s ease-out;
text-shadow: none; /* Remove text shadow */
}
.welcome-section p {
font-size: 1.2rem;
margin: 10px 0;
animation: fadeInUp 1s ease-out;
text-shadow: none; /* Remove text shadow */
}
.welcome-section a {
color: #FFDD57; /* Highlight color */
Expand Down Expand Up @@ -144,4 +147,4 @@ body, html {
.statistics p {
padding: 10px;
}
}
}

0 comments on commit 1827561

Please sign in to comment.