﻿body {
}

.altbaslik {
    font-weight: bold;
    color: #fb1d03;
}

.swiper-slide {
    font-size: 14px;
    text-underline-offset: 6px
}

.blink {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.logo40 {
    animation: logoMove 2s linear forwards;
    position: absolute;
}

@keyframes logoMove {
    from {
        transform: translateX(-400px);
    }

    to {
        transform: translateX(0);
    }
}

