-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (48 loc) · 1.61 KB
/
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
51
52
53
54
55
56
57
58
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Nunito', sans-serif; /* Adding Nunito font */
color: #ffffff; /* Changing h1 text color */
}
.content {
text-align: center;
font-family: 'Nunito', sans-serif; /* Adding Mulish font */
}
h1 {
color: #ffffff; /* Changing h1 text color */
font-weight: 800; /* Making h1 extra bold */
font-size: 2.5em; /* Increasing h1 font size */
}
h2 {
font-weight: normal; /* Making h2 non-bold */
color: #ffffff; /* Changing h1 text color */
}
img {
border-radius: 80px; /* Adjust the value to change the roundness of the corners */
transform: scale(0.6);
display: block; /* Ensure images are displayed as block elements */
margin: 0 auto; /* Center the image horizontally */
padding: 0; /* Remove any default padding */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adjust the shadow properties as needed */
}
h1, h2, p {
margin: 0; /* Remove margin to decrease spacing */
padding: 5px 0; /* Add padding for spacing between elements */
}
body {
color: "8CB524"; /* Adjust the colors and direction as needed */
background: linear-gradient(to bottom right, #B9E157, #76A308); /* Adjust the colors and direction as needed */
background-size: 300% 300%; /* Increase background size for more variation */
animation: gradientAnimation 10s ease infinite alternate; /* Animation for shifting gradient */
}
@keyframes gradientAnimation {
0% {
background-position: 0% 0%;
}
100% {
background-position: 100% 100%;
}
}