-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
39 lines (36 loc) · 844 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
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.background-image {
display: flex;
height: 100vh;
gap: 25px;
flex-direction: column;
justify-content: center;
flex-wrap: wrap;
align-content: center;
background-image: url("https://media.istockphoto.com/vectors/vector-realistic-isolated-neon-sign-of-fun-fact-frame-logo-for-and-vector-id1174848677?k=20&m=1174848677&s=170667a&w=0&h=EnP6La4dH6RUyhffyJb5BF_Lbr6Kbul2a2ZAL15gjhY=");
background-size: cover;
background-repeat: no-repeat;
padding: 30px;
}
.random-fact-div {
display: flex;
justify-content: center;
align-items: center;
background: white;
border-radius: 3px;
height: 35%;
width: 25%;
margin-left: 400px;
padding-left: 10px;
padding-right: 10px;
}
.random-bttn-div {
margin-left: 400px;
align-self: center;
border-radius: 3px;
}