/* Animasyon için barlar */
.bar {
width: 8px;
height: 30px;
margin: 2px;
background-color: #aaa;
display: inline-block;
animation: loading 1.2s infinite ease-in-out;
}
.bar:nth-child(1) {
animation-delay: -1.2s;
}
.bar:nth-child(2) {
animation-delay: -1.1s;
}
.bar:nth-child(3) {
animation-delay: -1.0s;
}
.bar:nth-child(4) {
animation-delay: -0.9s;
}
@keyframes loading {
0%, 40%, 100% {
transform: scaleY(0.5);
} 20% {
transform: scaleY(1.0);
}
}
/* Sayfa içeriği */
#main-content {
display: none;
}