Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
frubcoin authored Oct 17, 2024
1 parent f1d10b6 commit e30f748
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,21 +109,20 @@
}

body {

font-family: "Encode Sans Expanded", sans-serif;
font-weight: 700;
font-style: normal;
color: var(--text-color);
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
position: relative;


}
font-family: "Encode Sans Expanded", sans-serif;
font-weight: 700;
font-style: normal;
color: var(--text-color);
margin: 0;
padding: 0;
display: flex;
justify-content: center; /* Center everything horizontally */
align-items: center; /* Center everything vertically */
min-height: 100vh;
position: relative;
}




@media (max-width: 768px) {
Expand Down Expand Up @@ -161,26 +160,27 @@
}

.content-wrapper {
background-color: var(--bg-color);
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: flex-start;
padding-top: 40px;
}

.container {
max-width: 600px;
width: 100%;
padding: 20px;
box-sizing: border-box;
}

header {
text-align: center;
margin-bottom: 30px;
}
background-color: var(--bg-color);
width: 100%;
display: flex;
height: 100vh;
justify-content: center; /* Center the content horizontally */
align-items: center; /* Center the content vertically */
padding-top: 0; /* Remove extra padding */
}

.container {
max-width: 600px;
width: 100%;
padding: 20px;
box-sizing: border-box;
text-align: center; /* Center text inside the container */
}

header {
text-align: center;
margin-bottom: 30px;
}

.avatar {
width: 120px;
Expand Down

0 comments on commit e30f748

Please sign in to comment.