*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body
{
    background-color: black;
}

.webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.content
{
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

a
{
    text-decoration: none;
    color: #ffffff;
}

ul
{
    list-style: none;
}

header
{
    position: absolute;
    width: 100%;
    height: 55px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(0, 5, 10, 0.65);
    box-shadow: 0 8px 32px rgb(2, 4, 24);
    border-bottom: 2px solid rgba(255, 255, 255, 0.09);
}

.full img
{
   position: relative;
   top: -0.3rem;
   width: 2.5rem;
   height: 2.5rem;
}

.nav_list
{
    position: absolute;
    display: flex;
    top: 0.66rem;
    right: 40px;
    gap: 3rem;
}

li
{
    top: 0.66rem;
    font-size: 20px;
    font-weight: 550;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.description
{
    position: absolute;
    top: 30%;
    left: 7vw;
    width: max-content;
    height: 60%;
    color: #ffffff;
    pointer-events: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.details
{
    display: block;   
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(10, 10, 10, 0.65);
    width: min(41vmax, 580px);
    padding-left: 5%;
    padding-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgb(2, 4, 24);
    border: 2px solid rgba(255, 255, 255, 0.09);
}

h1
{
    font-size: min(10vmin, 80px);
    font-weight: 500;
    padding-bottom: 1.5rem;
}

h2
{
    font-size: min(4.1vmin, 35px);
    font-weight: 350;
    padding-top: 1rem;
}

.dropdown-content
{
    display: none;
    position: absolute;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
    scrollbar-color: rgba(213, 76, 255, 0.3) rgba(10, 10, 10, 0.3);
    right: 0rem;
    top: 2.67rem;
    width: 400px;
    min-width: 160px;
    height: 60vh;
    max-height: 697px;
    background-color: rgba(0, 5, 10, 0.65);
    box-shadow: 0 8px 32px rgb(2, 4, 24);
    border: 2px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
}

.dropdown-content a
{
    padding: 20px 20px;
    display: block;
    scroll-snap-align: start;
}

.dropdown-content img
{
    width: 100%;
    height: 100%;
}

.dropdown:hover .dropdown-content
{
    display: flex;
    flex-direction: column;
}

:root {
    --tp-base-background-color: hsla(210, 100%, 2%, 0.65);
    --tp-base-shadow-color: hsla(235, 85%, 5%, 0.20);
    --tp-container-background-color: hsla(0, 0%, 0%, 0.30);
    --tp-container-background-color-active: hsla(0, 0%, 15%, 0.30);
    --tp-container-background-color-focus: hsla(0, 0%, 10%, 0.30);
    --tp-container-foreground-color: hsla(0, 0%, 100%, 0.50);
    --tp-groove-foreground-color: hsla(0, 0%, 0%, 0.2);
    --tp-input-background-color: hsla(0, 0%, 0%, 0.3);
    --tp-input-background-color-active: hsla(0, 0%, 15%, 0.30);
    --tp-input-background-color-focus: hsla(0, 0%, 10%, 0.30);
    --tp-input-foreground-color: hsla(0, 0%, 100%, 0.5);
    --tp-label-foreground-color: hsla(0, 0%, 100%, 0.5);
    --tp-container-background-color-hover: hsla(286, 100%, 57%, 0.30);
    --tp-input-background-color-hover: hsla(286, 100%, 57%, 0.30);
    --tp-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tp-rotv,
.tp-clpv 
{
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.tp-rotv_t
{
    font-size: large;
}

.tp-lblv_l
{
    font-size: medium;
}

.galaxy_colors
{
    position: absolute;
    top: 8vh;
    right: 1vw;
    bottom: 40px;
}

@media (hover: hover), (-ms-high-contrast:none) {
    .full img:hover
    {
        filter: invert(100%);
        -webkit-filter: invert(100%);
        background-color: #34dd00;
        border-radius: 5px;
        transition: .4s;
    }

    ul li a:hover
    {
        color: #cb22ff;
        transition: .3s;
    }

    .dropdown-content a:hover
    {
        background-color: rgba(255, 255, 255, 0.09)
    }
}

/*# sourceMappingURL=backgrounds.css.map*/