*{
    margin: 0;
    padding: 0;
}

/* Preloader arka planı */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url(img/blurlystartpage.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buton ve başlığın hizalanması */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Başlık tasarımı */
#buttonTitle {
    font-size: 24px;
    color: white;
    font-weight: bold;
    margin-bottom: 75px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Buton başlangıçta yavaş dönecek */
#playButton {
    width: 400px;
    height: auto;
    cursor: pointer;
    animation: slow-spin 5s linear infinite;
    transition: transform 1.5s ease-in-out; /* Yavaş hızlanma efekti */
}

/* Yavaş dönüş animasyonu */
@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
 
/* Hızlı dönüş */
@keyframes fast-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Buton tıklandığında hızlanacak */
.fast-spin {
    animation: fast-spin 0.7s linear infinite !important;
    transition: transform 1.5s ease-in-out !important; /* Yavaş hızlanma */
}
