92 lines
1.3 KiB
CSS
92 lines
1.3 KiB
CSS
|
|
.about-section {
|
|
background-color: #FFC5D3;
|
|
padding: 60px 20px;
|
|
color: #252525;
|
|
}
|
|
|
|
.content-wrapper {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
padding-bottom: 60px;
|
|
}
|
|
|
|
.content-wrapper h3 {
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
color: #d00664;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.content-wrapper h4 {
|
|
color: #d10e3b;
|
|
}
|
|
|
|
.content-wrapper p {
|
|
color: #6a0a20;
|
|
}
|
|
|
|
.back-button-container {
|
|
text-align: center;
|
|
}
|
|
|
|
.back-button {
|
|
display: inline-block;
|
|
background-color: #df4c91;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
padding: 12px 20px;
|
|
border-radius: 8px;
|
|
transition: background-color 0.3s ease, transform 0.3s ease;
|
|
}
|
|
|
|
.back-button:hover {
|
|
background-color: #b00555;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
body {
|
|
opacity: 1;
|
|
transition: opacity 0.5s ease-in-out;
|
|
}
|
|
|
|
body.fade-out {
|
|
opacity: 0;
|
|
}
|
|
|
|
.animated-bg {
|
|
transition: opacity 0.5s ease-in-out;
|
|
}
|
|
|
|
body {
|
|
opacity: 0;
|
|
animation: fadeIn 0.5s forwards;
|
|
transition: opacity 0.5s ease-in-out;
|
|
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
body.fade-out {
|
|
opacity: 0;
|
|
}
|
|
|
|
|
|
.animated-bg {
|
|
transition: opacity 0.5s ease-in-out;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|