html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    overflow: hidden;
}

.outer {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
    
}

.inner {
    margin-left: auto;
    margin-right: auto;

    /* Whatever width you want */
}

html, body {
    height: 100%;
}

.full-height {
    height: 100%;
}
::-webkit-scrollbar {
    display: none;
    visibility: hidden;
    opacity: 0
}

.kayan-yazi-container {
    height: 100vh; /* Container'ı ekran genişliğine yay */
    overflow: hidden; /* Taşan kısımları gizle */
}

.kayan-yazi {
    text-align: center;
    position: relative; /* Pozisyonu belirle */
    z-index: 2;
    animation: kayanYazi 50s linear infinite; /* Animasyonu tanımla */
}

@keyframes kayanYazi {
    0% {
       transform: translateY(0%); /* Başlangıç pozisyonu, sağdan başlasın */
    }
    40% {
        transform: translateY(-10%);
    }
    50% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0%);
        /* Bitiş pozisyonu, soldan kaybolsun */
    }
}

.yatay-kayan-yazi-container {
    width: 900%; /* Container'ı ekran genişliğine yay */
    overflow: hidden; /* Taşan kısımları gizle */
}

.yatay-kayan-yazi {
    font-size: 36px;
    text-align: center;
    position: relative; /* Pozisyonu belirle */
    z-index: 1;
    animation: yatay-kayan-yazi 150s linear infinite; /* Animasyonu tanımla */
}

@keyframes yatay-kayan-yazi {
    0% {
        left: 100%; /* Başlangıç pozisyonu, sağdan başlasın */
    }

    100% {
        left: -100%; /* Bitiş pozisyonu, soldan kaybolsun */
    }
}
#cookieConsentdiv {
    z-index: 1000;
    position: fixed;
    width: 400px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px 20px 30px;
    font-family: 'Century Gothic', sans-serif;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 30px 30px 0 0;
}

    #cookieConsentdiv button {
        display: block;
        margin-left: auto;
        margin-right: auto;
        border: none;
        background-color: green;
        padding: 10px 50px;
        margin-top: -5px;
        color: white;
        transition: all ease 0.5s;
    }

        #cookieConsentdiv button:hover {
            background-color: darkgreen;
        }

    #cookieConsentdiv h3 {
        font-size: 22px;
    }

    #cookieConsentdiv p {
        font-size: 13px;
    }

    #cookieConsentdiv a {
        color: gray;
        text-decoration: underline;
    }