@font-face {
    font-family: 'Dank Mono';
    src:  url('../fonts/Dank Mono Regular.otf') format('otf');
}
@font-face {
    font-family: "Dank Mono";
    src: url('../fonts/Dank Mono Italic.otf') format('otf');
    font-style: italic;
}
body {
    overflow: hidden;
    margin: 0px;
}
h1, h2, h3, h4, h5, p, .btn {
    color: #ffffffd4;
    font-family: monospace;
}
a {
    text-decoration: none;
    white-space: nowrap;
}
.ascii-title-wrapper {
    margin-top: 6%;
}
.d-none-dottod {
    display: none;
}
.ascii-title {
    white-space: pre-wrap;
    font-size: 6px;
}
.ascii-title-small {
    font-size: 6px!important;
}
.btn {
    border-radius: 0px;
}
.btn-dark {
    background-color: transparent;
    border: 1px solid white;
}
.btn-dark:hover {
    background-color: transparent;
    border: 2px solid white;
}
.btn-enter-wrapper {
    margin-top:5%;
}
.description-wrapper {
    max-width: 100%;
}
.description-text {
    font-size: 12px;
}
.margin-projects {
    margin-top: 3rem;
}
.margin-description {
    margin-top: 3rem;
}
#landing_wrapper {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 1200ms, visibility 1200ms;
    transition: opacity 1200ms, visibility 1200ms;
}

#tech_specs_container {
    display: none;
    visibility: visible;
    opacity: 0;
    -webkit-transition: opacity 1200ms, visibility 1200ms;
    transition: opacity 1200ms, visibility 1200ms;
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    width: 100%;
    height: 100vh;
}

.tech-spec-wrapper {
    position: relative;
}
.text-title {
    color: white;
}
.btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

#col_spec_wrapper {
    -webkit-transition: margin 2000ms;
    transition: margin 2000ms;
    border: 2px solid white;
    background-color: black;
    height: 90%;
    max-height: 600px;
    overflow-y: scroll;
}

.sticky-title {
    border-bottom: 2px solid white;
    position: sticky;
    top: 0;
    background-color: black;
    z-index: 9999;
}
hr {
    border-top: 2px dashed white;
    opacity: 0.5;
}
.progress {
    width: 200px;
    --bs-progress-bar-color: #ffffff;
    --bs-progress-bar-bg: #1e1e1e;
    --bs-progress-bg: #e9ecef;
    border-radius: 0;
    border: 1px solid white;
}

.marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    font-size: 24px;
    color: white;
    background-color: black;
    border-top: 1px solid white;
    height: 40px;
    overflow-x: hidden;
    font-family: monospace;
    padding-bottom: 5px;
}
.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (min-width: 992px) {
    .ascii-title {
        white-space: pre-wrap;
        font-size: 12px;
    }
    .description-text {
        font-size: 16px;
    }
    .description-wrapper {
        max-width: 70%;
    }
    .margin-projects {
        margin-top: 3rem;
    }
    .margin-description {
        margin-top: 9rem;
    }
    .ascii-title-wrapper {
        margin-top: 6%;
    }
    .btn-enter-wrapper {
        margin-top: 4%;
    }
}
