-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
35 lines (31 loc) · 742 Bytes
/
style1.css
File metadata and controls
35 lines (31 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
body {
font-family: 'Avenir Next', Arial, sans-serif; /* Fallback to Arial if Avenir Next isn't available */
text-align: center;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh; /* Use the full height of the viewport */
color: navy; /* color - navy */
background: white;
}
#mainTitle, #subTitle {
font-size: 24px;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
background-color: pink; /* Pink background */
border: none;
color: white;
border-radius:
margin-top: 20px;
}
#counterDisplay {
font-size: 26px;
margin-top: 20px;
}