-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (53 loc) · 1.01 KB
/
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
49
50
51
52
53
54
55
@import url('https://fonts.googleapis.com/css2?family=Tilt+Prism&display=swap');
body{
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #FDFC02;
}
.container{
width:800px;
/* height: 80vh;*/
background-color: white;
border-radius: 10px;
padding: 1.5rem;
display: flex;
flex-direction: column;
position: relative;
}
.container .img img{
width: 300px;
height: 260px;
}
.img {
display: flex;
justify-content: center;
align-items: center;
}
.content{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 3rem 0;
font-size:1.2rem;
font-weight: 700;
}
.container button{
margin-top: 1.5rem;
width:30%;
position: absolute;
bottom: 2rem;
left: 300px;
background-color: #0203FD;
color: white;
border-radius: 6px;
padding:1rem 0.5rem;
border: none;
font-size:1.3rem;
}
h3{
font-family: 'Tilt Prism', cursive;
font-size: 1.3rem;
}