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 {
    display: flex;
    flex-direction: column;
}

footer {
    bottom: 50px;
}

.navbar {
    background-color: rgba(42,0,42,.2);
}

.navbar-text,
.navbar-brand,
.nav-link {
    color: #4E0E29;
}

.brand-image {
    width: 200px;
    overflow: hidden;
    filter: brightness(1.75);
}

body {
    color: rgb(141,26,75, .75);
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/dark-sun.png");
}


a:link {
    color: rgb(141,26,75, .75) !important;
}

a:link:hover {
    color: rgb(141,26,75, 1) !important;
}

iframe {
    padding: 15px;
    width: 100%;
    height: 1000px;
}


.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(141,26,75, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
    border-color: rgb(141,26,75);
    color: transparent;
}

.custom-footer {
    color: rgb(141,26,75, .75);
}

.container .main-container {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.card {
    width: 75%;
    max-width: 1000px;
    border-radius: 25px;
    background-color: rgba(42,0,42,.5);
}

.zoom {
    transition: transform .2s;
}

    .zoom:hover {
        transform: scale(1.05);
        filter: brightness(1.15) drop-shadow(0 0 0.75rem black);
    }

p {
    padding-left: 20px;
    padding-right: 20px;
    text-align: justify-all;
}

h2, h3, h4 {
    padding-left: 20px;
    padding-top: 20px;
}

div::-webkit-scrollbar {
    width: 20px;
}

div::-webkit-scrollbar-track {
    background-color: rgba(42, 0, 42, 0);
    border-radius: 20px;
}

div::-webkit-scrollbar-thumb {
    background-color: rgba(42, 0, 42);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 3px solid rgba(100, 0, 100, .15);
}

    div::-webkit-scrollbar-thumb:vertical:hover {
        background-color: rgba(100, 0, 100, .5);
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        border: 3px solid rgba(100, 0, 100, .25);
    }

body::-webkit-scrollbar {
    width: 20px;
}

body::-webkit-scrollbar-track {
    background-color: rgba(42, 0, 42, 0);
    border-radius: 20px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(42, 0, 42, 0);
    border: 3px solid rgba(100, 0, 100, 0);
}

.btn-primary {
    background-color: rgb(141,26,75, .5);
    border-color: rgb(141,26,75, 1);
}

    .btn-primary:hover {
        background-color: rgb(141,26,75, 1);
        border-color: rgb(141,26,75, 1);
    }