-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
50 lines (42 loc) · 794 Bytes
/
styles.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
body {
background-color: #D3D3D3;
font-family: 'Poppins', sans-serif;
}
.container {
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
border-radius: 20px;
}
.container-response {
background-color: #FFDEAD;
margin-top: 40px;
border-radius: 20px;
width: auto;
}
.text {
text-align: center;
color: #000000;
font-weight: bold;
}
.button {
width: 350px;
padding: 15px 20px;
border: 1px solid #eee;
border-radius: 6px;
background-color: #FCC302;
font-size: 18px;
}
.message {
font-weight: bold;
font-size: 20px;
display: block;
text-align: center;
}
.img {
border-radius: 20px;
display: block;
margin: 40 auto;
}