Files
LuckyDiamond/luckydiamond/src/assets/css/PagesStyles/home.css
2023-11-20 22:12:42 +03:00

67 lines
1.1 KiB
CSS

/* Main */
.main {
display: flex;
justify-content: center;
border-radius: 40px;
background: #EF4444;
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.main__content {
text-align: center;
color: #FFF;
}
.main__content h3 {
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Montserrat;
font-size: 32px;
font-weight: 700;
margin: 20px 0 -25px 0;
}
.main__content h1 {
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Montserrat Alternates;
font-size: 91px;
font-weight: 700;
text-transform: uppercase;
}
.main__content h4 {
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Montserrat;
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
}
@keyframes RaindowAnimate {
from {
color: #6EEB21;
}
10% {
color: #0099ff;
}
50% {
color: #00ff00;
}
75% {
color: #ff3399;
}
100% {
color: #6EEB21;
}
}
.default__text--main__block {
color: #6EEB21;
}
.animate__text--main__block {
animation: RaindowAnimate 5s infinite;
animation-delay: 5s;
}
/* /Main */