Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
PrakharDoneria authored Jan 6, 2024
1 parent d8846a6 commit b014784
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
/* Basic styling and resets */
body {
font-family: sans-serif;
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden; /* Prevent vertical scroll */
font-family: sans-serif;
background-color: #f5f5f5; /* Or your preferred background color */
}

header, main, footer {
padding: 2rem;
box-sizing: border-box; /* Include padding in element's total width and height */
}

main {
min-height: 100vh; /* Set main element height to at least 100% of the viewport height */
display: flex;
flex-direction: column;
}

/* Hero section styling */
Expand All @@ -19,11 +28,6 @@ header {
color: white; /* Adjust as needed for contrast */
}

header h1 {
font-size: 4rem;
margin-bottom: 1rem;
}

/* Prompt section styling */
.prompt-section {
display: flex;
Expand Down

0 comments on commit b014784

Please sign in to comment.