/*
Theme Name: Basic Bootstrap 5
Author: Linkweb
Description: Empty theme for starting a custom Bootstrap 5 theme
Version: 1.0
*/

pre {
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
    background-color: #1D1F21;
    color: #F0C674 !important;
    padding: 30px;
    margin: 15px;
    border-radius: 8px;
    word-break: break-all;
    word-wrap: break-word;
    overflow: auto;
    position: relative;
    z-index: 9;
}

* { scroll-behavior: smooth; }

html, body {
    font-stretch: normal;
    font-style: normal;
    /* line-height: normal; */
    letter-spacing: normal;
}

img {
    max-width: 100%;
    height: auto;
}

/*Responsive Videos*/
iframe[src*="youtu.be"],
iframe[src*="youtube"],
iframe[src*="vimeo"],
video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.fs-small {
    font-size: .75rem;
}

.modal-body .embed iframe {
    width: 100%;
}

/*Flex Settings*/
section.flex-content,
section.flex-content .container { position: relative; }
section.flex-content .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
section.flex-content .bg,
section.flex-content > video.embeded-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
section.flex-content > .embeded-youtube { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 177.78vh; height: 100vh; min-width: 100vw; min-height: 56.25vw; pointer-events: none; z-index: -1; }
section.flex-content img.bg,
section.flex-content > video.embeded-video { object-fit: cover; object-position: center; }