body {
    font-family: "komet", sans-serif;
    font-weight: 200;
    font-style: normal;
}

h1, .display-3, em {
    font-family: "komet", sans-serif;
    font-weight: 700;
    font-style: normal;
}

h2 {
    font-family: "komet", sans-serif;
    font-weight: 200;
    font-style: italic;    
}

h1 {
    color: #00213b;
}

h2, dt {
    color: #236ea9;
}

.logo {
    height: 50px;
}

.video-container {
    position: relative;
}

@media (min-width: 992px) { 
    .video-container {
        max-height: 50vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.bg-dark {
    background-color: #152836 !important;
}

.card {
    background-blend-mode: overlay;
    background-image: var(--bg-image);
    background-color: rgba(0, 0, 0, 0.5);
    background-position-x: 50%;
    background-position-y: 50%;
    background-size: cover;
    border: 0;
    border-radius: 20px;
    aspect-ratio: 1.5;
    
}

.btn {
    transition: all 0.5s ease-in-out;
}

.btn:hover{
    transform: scale(1.1);
}

.carousel-item {
    background-color: #222;
}

.carousel-item img {
    max-height: 75vh;
    max-width: 100%;
}

.carousel-inner .carousel-item > img {
    animation: thing 20s; 
}

@keyframes thing {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.5, 1.5);
    }
}

a.jx-knightlab {
    display: none;
}