﻿.waviy {
    position: relative;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
    font-size: 20px;
}

    .waviy span {
        font-family: 'Alfa Slab One', cursive;
        position: relative;
        display: inline-block;
        color: #fff;
        text-transform: uppercase;
        animation: waviy 4s infinite;
        animation-delay: calc(.1s * var(--i));
    }

@keyframes waviy {
    0%,40%,100% {
        transform: translateY(0)
    }

    20% {
        transform: translateY(-20px)
    }
}



/* size ayarlama*/
/* Custom H1 Stili */
.custom-h1 {
    font-family: Bahnschrift;
    text-align: center;
    justify-content: center;
    margin: 0;
    padding: 10px;
    font-weight: bold;
}

/* Küçük ekranlar için font boyutunu dinamik olarak ayarla */
@media (max-width: 576px) {
    .custom-h1 {
        font-size: 24px; /* Telefonlar için font boyutu */
        line-height: 1.2; /* Daha uygun bir satır aralığı */
    }
}

/* Orta boyutlu ekranlar (tablet gibi) için font boyutunu ayarla */
@media (min-width: 577px) and (max-width: 768px) {
    .custom-h1 {
        font-size: 32px; /* Tabletler için font boyutu */
        line-height: 1.4;
    }
}

/* Daha büyük ekranlar için font boyutunu ayarla */
@media (min-width: 769px) {
    .custom-h1 {
        font-size: 40px; /* Masaüstü ekranlar için font boyutu */
        line-height: 1.5;
    }
}
/* ################################################################################# */


.output {
    text-align: center;
    font-family: 'Source Code Pro', monospace;
    color: white;

}

/* Cursor Styling */

.cursor::after {
    content: '';
    display: inline-block;
    margin-left: 3px;
    background-color: white;
    animation-name: blink;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}

h5.cursor::after {
    height: 24px;
    width: 13px;
}

p.cursor::after {
    height: 13px;
    width: 6px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    49% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}