﻿.background-container {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    width: 100%;
    height: 300px;
    background: url('/img/asset/bg.jpg') no-repeat center center/cover;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 43, 53, 0.7); /* Beyaz renk, %70 opaklık */
}

.text-container {
    position: relative;
    z-index: 1;
    color: black; /* Metin rengi */
    padding: 20px;
    text-align: left; /* Metni sola hizala */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Yükseklik boyunca ortala */
    align-items: flex-start; /* Sola hizala */
}

h1 {
    font-size: 3em;
    margin: 0;
    text-align: left; /* Metni sola hizala */
}


h4 {
    font-size: 1.1em;
    margin: 0;
    color: white;
    font-family:monospace;
}

.code {
    color: #FFC107; /* Kod metin rengi */
    font-style: normal;
    white-space: nowrap; /* Satır sonu olmadan yazılır */
}

.typewriter {
    display: inline; /* Inline olarak ayarlandı */
    border-right: 2px solid;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(30, end) 1s 1 normal both, blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }

    10% {
        border-color: #FFC107;
    }
}
