* {
    box-sizing: border-box;
}

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;
    font-family: Rajdhani, sans-serif;
}

.custom-navbar {
    background-color: #0f0f0f;
}

    .custom-navbar .navbar-brand {
        color: #E0E0E0;
    }

    .custom-navbar .nav-link {
        color: #B0B0B0;
    }

        .custom-navbar .nav-link:hover, .custom-navbar .nav-link:focus {
            color: #e0e0e0;
        }

.nav-pfp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 10px;
    border: 2px solid white;
    cursor: pointer;
    transition: 0.2s;
}

    .nav-pfp:hover {
        transform: scale(1.1);
        border-color: #00ff88;
    }

    .nav-pfp:active {
        transform: scale(1.0);
        border-color: #00ff88;
    }

/* tablet */
@media (max-width: 992px) {

    .custom-navbar {
        padding: 10px 16px;
    }

    .nav-pfp {
        width: 36px;
        height: 36px;
    }
}

/* mobile */
@media (max-width: 576px) {

    html {
        font-size: 14px;
    }

    .custom-navbar .navbar-brand {
        font-size: 1.1rem;
    }

    .custom-navbar .nav-link {
        font-size: 0.95rem;
    }

    .nav-pfp {
        width: 32px;
        height: 32px;
        margin-left: 6px;
    }

    body {
        margin-bottom: 40px;
    }
}