You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.1 KiB
76 lines
1.1 KiB
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background-color: #fef6ff;
|
|
color: #4a4a4a;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 20px;
|
|
padding: 20px;
|
|
background: #fff;
|
|
border-radius: 15px;
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 2rem;
|
|
color: #ff85a2;
|
|
}
|
|
|
|
main {
|
|
text-align: center;
|
|
}
|
|
|
|
h2 {
|
|
color: #8e44ad;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p, ul {
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
ul li {
|
|
margin: 5px 0;
|
|
color: #e74c3c;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
font-size: 0.8rem;
|
|
color: #999;
|
|
}
|
|
|
|
.wiggle {
|
|
position: relative;
|
|
width: 10%; /* Resize the PNG as needed */
|
|
animation: wiggle 4s infinite ease-in-out; /* Add animation */
|
|
}
|
|
|
|
@keyframes wiggle {
|
|
0%, 100% {
|
|
transform: rotate(-10deg) translateX(-5px);
|
|
}
|
|
50% {
|
|
transform: rotate(10deg) translateX(5px);
|
|
}
|
|
}
|
|
|