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, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    background: rgb(52, 58, 64);
    background: radial-gradient(circle, rgba(52, 58, 64, 1) 0%, rgba(52, 58, 64, 1) 35%, rgba(0, 0, 0, 1) 100%);
}

main {
    flex: 1;
    overflow: auto;
}

.navbar-brand img {
    width: 50px;
}


.home-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.home-logo {
    /*opacity: 0.6;*/
    width: 50%;
    max-width: 800px;
    padding: 30px;
}

.home-logo .logo-wrapper {
    position: relative;
}

/*bootstrap < xl screens*/
@media (max-width: 1200px) {
    .home-logo {
        max-width: 250px;
    }

    .home-logo-wrapper {
        height: 20%;
    }
}

.home-logo img {
    height: auto;
    filter: drop-shadow(3px 5px 2px #00000060);
}


.home-logo .app-logo {
    width: 10%;
    position: absolute;
    top: -11%;
    right: -11%;
}

