Skip to content

Commit

Permalink
Create .css
Browse files Browse the repository at this point in the history
  • Loading branch information
Delatorrep authored Dec 18, 2023
1 parent 73bba7d commit b4f6971
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .css
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 */
}

0 comments on commit b4f6971

Please sign in to comment.