/* N - 2024-03-17 */

/* gfont */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* General Setup for Black Theme */
* {
    margin: 0;
    padding: 0;
}

body {
    font: normal;
    font-family: "Inter", sans-serif;
    background-color: rgb(-0, 2, 18);
}

/* Navigation Bar */
ul {
    list-style: none;
    margin: 15px;
}

.nav:first-child {
    float: left;
}

.nav {
    float: right;
}

.nav .a-style {
    display: block;
    color: white;
    font-weight: 500;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;

}

.nav .a-style:hover {
    background-color: rgb(0, 12, 23, 1);
}

.navigation-reserved {
    z-index: 30;
    position: relative;
    width: 100%;
}

.logo {
    padding-top: 10px;
    padding-left: 30px;
}

/* Standard Universal Classes */

.center-text {
    text-align: center !important;
}

.top-30px {
    top: -30px;
}

.primary_header {
    line-height: 1;
    display: inline-block;
    position: relative;
    padding: 5px;
    color: whitesmoke;
    filter: drop-shadow(0 0 0.2px white);
    font-weight: 600;
    font-size: 400;
    text-align: center;
}

.secondary_header {
    position: relative;
    padding-top: 5px;
    font-weight: 300;
    color: whitesmoke;
}

.float-left {
    float: left !important;
}

ol li {
    padding: 3px;

}

.accent-blue {
    color: #bae0fb;
}

.extra-bold {
    font-weight: 700 !important;
}

.extra-underline {
    -webkit-text-decoration: underline solid #bae0fb;
    text-decoration: underline solid #bae0fb;
}

.mr-16 {
    margin-right: 16px;
}

/* Fix Font-Awesome's Icon Spacing */
.fa-icon {
    margin-right: 8px;
}

.anti-scroll {
    overflow: hidden;
}

/* Header Custom Classes */

.header-bg {
    position: relative !important;
}

.header-content {
    z-index: 15;
    text-align: center;
    position: absolute;

    /* Firefox requires custom tags for compatability, for whatever reason. */
    height: -moz-fit-content;
    height: fit-content;

    /* Firefox requires custom tags for compatability, for whatever reason. */
    width: -moz-fit-content;
    width: fit-content;

    /* Center Align */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    
    /* blur background */
    background-color: rgb(0, 12, 23, 0.1);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    border-radius: 10px;
    padding: 10px;
}


/* Custom Button(s) with Animations, based off cool web-example I saw */

.btn-secondary {
    position: relative;
    padding: 10px 20px;
    margin: 0 15px;
    color: #bae0fb;
    text-decoration: none;
    overflow: hidden;
    border: 1.5px solid #bae0fb;
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: #bae0fb;
    color: #0c1c3b;
    transition: 0.5s;
}

.btn-primary {
    position: relative;
    padding: 10px 20px;
    margin: 0 15px;
    color: #bae0fb;
    text-decoration: none;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid #bae0fb;
    border-left: 1.5px solid #bae0fb;
    transition: 0.5s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #bae0fb;
    border-bottom: 1.5px solid #bae0fb;
    transition: 0.5s;
}

.btn-primary:hover:before {
    width: 100%;
    height: 100%;
}

.btn-primary:hover:after {
    width: 100%;
    height: 100%;
}

/* Custom Homepage Animation Code */

.submission-area-home {
    display: flex !important;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;

    align-items: center;
    justify-content: center;
    padding-top: 20px;

}

#sky_box {
    overflow: hidden;
    /* make it vw and vh to match le viewport */
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#shooting_star_area {
    /* make it vw and vh to match le viewport */
    width: 100vw;
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transform: translatex(calc(50vw - 50%)) translatey(calc(50vh - 50%)) rotate(120deg);
}

.shooting_star {
    height: 2px;
    top: 200px;
    width: 100px;
    margin: 0;
    opacity: 0;
    padding: 0;
    background-color: white;
    position: absolute;
    background: linear-gradient(-45deg, white, rgba(0, 0, 255, 0));
    filter: drop-shadow(0 0 6px white);
    overflow: hidden;
}

#path_h {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.golden_star {
    height: 2px;
    width: 100px;
    opacity: 0;
    position: absolute;
    background-color: #E5B80B;
    background: linear-gradient(-50deg, #E5B80B, rgba(0, 0, 255, 0));
    filter: drop-shadow(0 0 6px #E5B80B);
    
}


/* Page Load Animations */

.load-animDel {
    /* This animation is delayed to allow the other one to work before it. */
    animation: 2s fadeInUpDel;
}

@keyframes fadeInUpDel {
    0% {
        transform: translateY(8%);
        opacity: 0;
    }

    50% {
        transform: translateY(8%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.load-anim {
    animation: 1s fadeInUp;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(8%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

/* about page */
.rs-ls-container {
    color: whitesmoke;

    padding-top: 20px;

    /* center div */
    margin: 0 auto;
    width: 60%;
    



    
}

.rs-ls-container h1 {
    font-style: normal;
    font-size: 2.5em;
    font-weight: 700;
}

.float-right {
    float: right;

}
.mgr-50 {
    margin-right: 50px;
}

.mgl-50 {
    margin-left: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.text-area {
    padding: 20px;
    max-width: 1000px;
}

.special-grad {
    background-color: rgb(176,218,249);
    background-size: 100%;
    background-repeat: repeat;
    background-image: linear-gradient(300deg, rgb(105, 187, 246) 50%, rgba(254,254,254,1) 75%);

    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    -moz-text-fill-color: transparent;
}

.accent-white {
    color: whitesmoke;
}

.p-15 {
    padding: 15px;
}

.pt-60 {
    padding-top: 50px;
}

.h2-standard {
    font-weight: 500;
    padding-top: 180px;
    padding-bottom: 30px;
    font-size: x-large;
}

.badges {
    padding-top: 15px;
    padding-bottom: 15px;
}

.badge {
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    background-color: #0c1c3b;
    color: whitesmoke;
    border-radius: 10px;
}

.pt-100 {
    padding-top: 100px;
}
.date {
    padding-top: 3px;
    padding-bottom: 3px;
    color: #d3d3d3;
}

.lime-green {
    color: #cdffcd;
}

.hazard-yellow {
    color: #E5B80B;
}

.pos-rel {
    position: relative;
}

.my-bird-signature {
    position: absolute;
    left: 500px;
    top: 500px;
    /* move to left */
}

.external-links {
    padding-top: 10px;
    padding-bottom: 15px;
}

.external-links a {
    color: #bae0fb;
    text-decoration: none;
    /* make each element go one below the other */
    display: block;
    padding-top: 5px;
    
}

/* change visited */
.external-links a:visited {
    color: #bae0fb;
    text-decoration: none;
}

.ml-3 {
    margin-left: 3px;
}

.about-link {
    color: #bae0fb;
    text-decoration: none;
}

.about-link:visited {
    color: #bae0fb;
    text-decoration: none;
}

.roadmap {
    padding-top: 20px;
    padding-bottom: 20px;
}

td, th {
    border: 1px solid whitesmoke;
    padding: 8px;
}

html.is-changing .transition-fade {
    transition: opacity 0.25s;
    opacity: 1;
}

html.is-animating .transition-fade {
    opacity: 0;
}