-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfora.css
More file actions
51 lines (44 loc) · 902 Bytes
/
Copy pathfora.css
File metadata and controls
51 lines (44 loc) · 902 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-image: linear-gradient(white, yellow, blueviolet);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
background-color: #23084c;
border-radius: 10px;
padding: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.message {
margin-bottom: 30px;
color: #333;
}
h1 {
font-family: 'Courier New', monospace;
font-size: 2rem;
color: peachpuff;
margin-bottom: 10px;
}
p {
font-size: 1.2rem;
margin: 5px 0;
color: #c6c64a;
}
.cake-container {
margin-top: 20px;
}
.cake-container img {
width: 300px;
height: auto;
border-radius: 10px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}