@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bruno Ace SC', cursive;
}
body
{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 100vh;
    background: #f4f4f4;
    backdrop-filter: drop-shadow(2px 4px 6px black);
    overflow: hidden;
}
#particles-js
{
    position: absolute;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    object-fit: cover;
    filter: blur(1px);
    opacity: 0.3;
    overflow: hidden;
}
.noise
{
    position: fixed;
    z-index: 9999;
    top: -300%;
    left: -150%;
    height: 600%;
    width: 600%;
    -webkit-animation: grain 7s steps(10) infinite;
    animation: grain 7s steps(10) infinite;
    background-image: url(../img/noise.png);
    background-repeat: repeat;
    opacity: 0.25;
    pointer-events: none;
}
@-webkit-keyframes grain
{
    0%,to {transform: translate(0);}
    10% {transform: translate(-5%,-10%);}
    20% {transform: translate(-15%,5%);}
    30% {transform: translate(7%,-25%);}
    40% {transform: translate(-5%,25%);}
    50% {transform: translate(-15%,10%);}
    60% {transform: translate(15%);}
    70% {transform: translateY(15%);}
    80% {transform: translate(3%,35%);}
    90% {transform: translate(-10%,10%);}
}
@keyframes grain
{
    0%,to {transform: translate(0);}
    10% {transform: translate(-5%,-10%);}
    20% {transform: translate(-15%,5%);}
    30% {transform: translate(7%,-25%);}
    40% {transform: translate(-5%,25%);}
    50% {transform: translate(-15%,10%);}
    60% {transform: translate(15%);}
    70% {transform: translateY(15%);}
    80% {transform: translate(3%,35%);}
    90% {transform: translate(-10%,10%);}
}
.title
{
    position: absolute;
    top: 50%;
    left: 10%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 460px;
}
.title h1
{
    font-size: 4rem;
    font-weight: 600;
    text-transform: lowercase;
    color: #f4f4f4;
    letter-spacing: 15px;
}
.title h3,
.title p
{
    color: #f4f4f4;
    font-weight: 400;
    max-width: 600px;
    text-align: justify;
    padding: 0 20px;
}
video
{
    position: absolute;
    z-index: -2;
    filter: blur(2px);
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    object-fit: cover;
}
img
{
    opacity: 0;
    position: absolute;
    z-index: -1;
    width: -webkit-fill-available;
    top: -400px;
    height: -webkit-fill-available;
    object-fit: cover;
    transform: translateZ(200px);
    transition: all 6s cubic-bezier(0.4, 0, 0.2, 1);
}
.blured
{
    position: absolute;
    width: -webkit-fill-available;
    height: 83px;
    bottom: 0;
    backdrop-filter: blur(10px);
    z-index: 0;
}
.navigator .line
{
    width: 100vw;
    height: 2px;
    background: #006fff;
    position: absolute;
    bottom: 83px;
}
.navigator .selector
{
    display: flex;
    justify-content: center;
    width: 100vw;
}
.navigator .selector ul
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    width: -webkit-fill-available;
}
.navigator .selector ul li
{
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    bottom: 25px;
}
.navigator .selector ul li .circle
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border: 2px solid #62b3ff;
    background: #62b3ff99;
    border-radius: 50%;
    position: absolute;
    bottom: 46px;
    opacity: 0;
    transition: all 0.333s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigator .selector ul li .dot
{
    width: 7px;
    height: 7px;
    background: #f4f4f4;
    transform: rotate(45deg);
    position: absolute;
    bottom: 55px;
    z-index: 1;
}
.navigator .selector ul li .visual
{
    width: -webkit-fill-available;
    max-height: 83px;
    position: absolute;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3) 0%, rgba(211, 86, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.333s cubic-bezier(0.4, 0, 0.2, 1);
    bottom: -25px;
}
.navigator .selector ul li a
{
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    color: #fff;
    cursor: default;
    z-index: 2;
    transition: filter 0.333s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigator .selector ul li a:hover{
    text-shadow: 0 0 6px #006fff, 0 0 20px #1877f2;
}
.navigator .selector ul li a:active
{
    color: #006fff;
    text-shadow: 0 0 0 #006fff, 0 0 0 #1877f2;
    filter: blur(10px);
    transition: filter 0.333s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 840px)
{
    .blured
    {
        height: 65px;
    }
    .navigator .line
    {
        bottom: 65px;
    }
    .navigator .selector ul li .circle
    {
        bottom: 28px;
    }
    .navigator .selector ul li .dot
    {
        bottom: 37px;
    }
    .navigator .selector ul li .visual
    {
        max-height: 65px;
    }
    .navigator .selector ul li a
    {
        font-size: 0.8rem;
    }
}
@media (max-width: 600px)
{
    img
    {
        top: -40px;
    }
    .noise
    {
        height: 100%;
        width: 100%;
    }
    .title
    {
        top: 40%;
        left: unset;
        max-width: 372px;
    }
    .title h1
    {
        font-size: 3rem;
        filter: blur(1px);
    }
    .title h3
    {
        font-size: 1rem;
    }
    .title p
    {
        font-size: 0.8rem;
    }
    .navigator .selector ul li a
    {
        font-size: 0.6rem;
        font-weight: 600;
    }
}
