-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
62 lines (54 loc) · 1.15 KB
/
home.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
padding: 0 10px;
min-height: 100vh;
align-items: center;
justify-content: center;
background: #00ddff;
}
h1 {
color: rgb(2, 2, 53);
font-size: 60px;
justify-content: center;
margin-bottom: 100px;
font-style: italic;
font-weight: bold;
font-family: cursive;
}
.box{
background-color: rgb(255, 0, 0);
border: 10px solid rgb(245, 108, 108);
width: 110px;
height: 120px;
margin-left: 90px;
}
.btn {
color: rgb(255, 255, 255);
background-color: rgb(0, 166, 255);
font-size: 20px;
font-weight: bold;
font-style: inherit;
margin-left: 70px;
margin-top: 50px;
height: 50px;
width: 150px;
border: none;
border-radius: 20px;
}
.btn:hover{
background-color: orange;
}
p{
margin-bottom: 20px;
color: black;
font-size: 20px;
font-style: oblique;
margin-left: 20px;
}