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;
}


.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: wheat;
    padding: 10px;
    text-align: center;
    margin-top: 15px;
}

body {
    position: relative;
    min-height: 100vh; /* Sayfanın tam yüksekliğini kapsar */
    padding-bottom: 50px; /* Footer ile çakışmaması için alt boşluk */
}


    .footer a {
        color: #b3b3b3; /* Soluk bağlantı rengi */
        text-decoration: none;
        margin: 0 10px;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #ffffff; /* Beyaz renge geçiş */
        }
