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;
}


/*This css is for layout*/
.custom-navbar {
    background-color: #343A40; /* black */
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.custom-brand {
    color: #ffffff !important;
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.custom-link {
    color: #ffffff !important;
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 10px;
    margin-right: 10px;
}

    .custom-link:hover,
    .custom-brand:hover {
        transform: scale(1.1);
        /* attractive hover color */
        text-shadow: 0 0 5px rgba(0, 255, 195, 0.5);
    }
/*This css is for layout*/