-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73bba7d
commit b4f6971
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
color: #26213e; /* Set default text color */ | ||
} | ||
|
||
.quote-container { | ||
text-align: center; | ||
width: 70%; | ||
max-width: 800px; | ||
font-family: Impact, sans-serif; /* Change font to Impact */ | ||
} | ||
|
||
.quote-and-author { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-end; /* Align items to the right */ | ||
} | ||
|
||
.quote { | ||
font-size: 2rem; | ||
margin-bottom: 5px; /* Add some spacing between quote and author */ | ||
} | ||
|
||
.author { | ||
font-style: italic; | ||
opacity: 0.8; | ||
font-size: 1.2rem; /* Increase the font size of the author */ | ||
} |