-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (42 loc) · 855 Bytes
/
style.css
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
body {
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Arial', sans-serif;
}
.beer-title {
font-size: 4rem;
font-weight: bold;
letter-spacing: 0.1rem;
overflow: hidden;
}
/* Styling for each letter to make it animatable */
.beer-title span {
display: inline-block;
opacity: 0; /* Initially hide the letters */
transform: translateY(100%);
}
.top-content {
max-width: 500px;
margin: 0 auto;
padding: 40px 20px;
text-align: center;
}
.inputs {
gap: 15px; /* Space between inputs */
}
.input {
max-width: 80px;
}
.input:last-child {
max-width: 100px;
}
/*Hide the content */
#content {
display: block; /* Initially hidden */
color: #fff;
}
#mainContent {
display: none; /* Initially hidden */
}