Skip to content

Commit

Permalink
style tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeumus committed Mar 16, 2024
1 parent 2d418ce commit 7557c33
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

/* Basic Reset */
* {
margin: 0;
Expand All @@ -7,14 +9,15 @@

body, html {
height: 100%;
font-family: Arial, sans-serif;
font-family: 'Montserrat', sans-serif;
color: #c4c5ca;
background: rgb(6,15,47);
}

nav {
width: 100%;
background: rgb(6,15,47);
background: radial-gradient(circle, rgba(6,15,47,1) 0%, rgba(12,18,41,1) 100%);
background: radial-gradient(circle, rgba(6,15,47,1) 0%, rgba(12,18,41,1) 100%);
color: white;
text-align: center;
padding: 1.5em 0;
Expand Down Expand Up @@ -79,7 +82,7 @@ background: radial-gradient(circle, rgba(6,15,47,1) 0%, rgba(12,18,41,1) 100%);
}
@keyframes breath {
0%, 100% {
transform: scale(1);
transform: scale(0.9);
}
50% {
transform: scale(1.1);
Expand Down Expand Up @@ -110,6 +113,7 @@ background: radial-gradient(circle, rgba(6,15,47,1) 0%, rgba(12,18,41,1) 100%);
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
font-size: 48px;
z-index: 1;
}

/* Central circle fixed positioning */
Expand Down

0 comments on commit 7557c33

Please sign in to comment.