-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (42 loc) · 822 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
@import url('https://fonts.googleapis.com/css2?family=Markazi+Text&display=swap');
*{
margin: 0;
padding:0;
font-family: 'Markazi Text', serif;
}
body{
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
}
/* text styling */
.upperText{
margin-top: 13rem;
font-size: 18px;
}
.bottom{
margin-top: 12rem;
font-size: 22px;
display: flex;
align-items: center;
flex-direction:column;
}
/* button styling */
#btn{
border-style: none;
box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.20);
border-radius:10px ;
font-size: 22px;
width: 120px;
height: 50px;
margin-top: 1rem;
padding: 10px;
cursor: pointer;
}
/* Responsive */
@media only screen and (max-width:600px) {
.upperText{
width: 90%;
}
}