-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (82 loc) · 1.64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
html, body {
min-height: 100vh;
margin: 0;
font-family: Inter;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 25px;
padding-bottom: 50px;
padding-left: 10px;
padding-right: 10px;
background: linear-gradient(
#ff6b6b,
#4ecdc4,
#45b7d1,
#f9d5e5
);
background-size: 400% 400%;
animation: gradientShift 12s ease infinite;
}
@keyframes gradientShift {
0% {
background-position: 0% 50%;
}
25% {
background-position: 100% 50%;
}
50% {
background-position: 100% 100%;
}
75% {
background-position: 0% 100%;
}
100% {
background-position: 0% 50%;
}
}
#container {
max-width: 800px;
width: 90%;
padding: 20px;
background-color: white;
border: 3px solid #444;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
transition: all 0.3s ease-in-out;
margin-bottom: 30px;
}
h1 {
margin-bottom: 20px;
}
#image-container {
display: flex;
justify-content: center;
}
#image-container img {
max-width: 80%;
height: auto;
border-radius: 10px;
}
#social-media {
margin-top: 20px;
display: flex;
justify-content: center;
gap: 15px;
}
#social-media img {
width: 40px;
height: 40px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#social-media img:hover {
transform: scale(1.2);
}
#credits {
font-size: small;
color: black;
}
#description p {
margin: 0;
}