@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wdth,wght@50,200;50,291;100,200;100,600;100,700&display=swap');

html,
body {
    margin: 0px;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #D3C6B6;
    background: #000;
    overflow-x: hidden;
    /* overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */

    /* max-height: 500px; Set the maximum height for the page */
    overflow-y: auto; 
}

.about {
    margin-left: 10px;
    width: 90%;
    max-width: 550px;
}

.about_content{
    margin-top: 200px;
}


.meimg {
    position: absolute;
    left: 350px;
    top: 10px;
    border: 1px solid transparent;
    border-radius: 15px; /* Rounded corners */
    animation: border-animation 3s ease-in;
}

/* Animation for the border */
@keyframes border-animation {
    0% {
    }
    33% {
        border-color: #5a5a5a;
        box-shadow: 0 0 10px #000000;
    }
    66% {
        border-color: #b5b5b5;
        box-shadow: 0 0 10px #ffffff;
    }
    100% {
    }
}


.melinks{
    margin: 0%;
    margin-top: 5px;
    /* margin-bottom: 10px; */
    padding: 0%;
    font-size: 20px;
}

.yspace{
    height:200px;
}
.email{
    font-size: 12px;
}
.metxt{
    margin-left: 5px;
}

.footer {
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: 0%;
    width: 100%;
    background-color: #0c0c0d;
    color: rgb(118, 118, 118);
    text-align: center;
}

#hider {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(255, 255, 255, 0);
    border: 2px solid rgba(255, 255, 255, 0.247);
    /* border box */
    z-index: 1;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: 500ms;
}

#hider:hover {
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;

}

#clock {
    font-family: 'Inconsolata', monospace;
    display: flex;
    text-align: center;
    align-items: baseline;
    font-size: 6rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: absolute;
    top: 0%;
    right: 0%;
    /* transform: translate(-50%, -50%); */


}

#time_m {
    font-stretch: 200%;

}

#time_s {
    font-size: 20%;
}

#am_pm {
    font-size: 20%;
    align-self: auto;
    position: sticky;
}

#am_pm__time_s {
    /* a flexbox column */
    display: flex;
    flex-direction: column;
}

#date {
    position: absolute;
    font-size: 25%;
    top: 90px;
    right: 30px;
}



.time_dh {
    font-size: 75%;
    align-self: center;
}

.time_dm {
    font-size: 20%;
    align-self: baseline;

}

.particle {
    position: absolute;
    /* z-index: -1; */
    /* opacity: 0.5; */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.235);
    width: 5px;
    height: 5px;
}

.particle_image {
    position: absolute;
    /* top: 110%; */
    /* left: 50%; */
    /* width: 10px; */
    /* height: 10px; */
    /* background: #fff; */
    z-index: -1;
    opacity: 0.5;
    border-radius: 50%;
}

.gib {
    /* position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1; */
    margin: -20px;
    padding: none;
    opacity: 0.7;
}

#gibs {
    position: absolute;
    bottom: 0px;
    right: 0;
}

#hider {
    position: absolute;
    padding: none;
    margin: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    border: none;
    border-radius: 0%;
    filter: blur(5px);
}

.logotext {
    position: absolute;
    color: var(--color);
    /* font-size: min(4vw, 20px); */
    flex-direction: column;
    right: 0px;
    top: 150px;
    margin-bottom: 0px;
    font-family: 'Planet Kosmos', sans-serif;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.5);
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
    font-size: 40px;
    text-align: right;
}

.logotextright {
    font-size: min(1.6vw, 10px);
    margin-top: 0px;
    margin-left: min(3vw, 1px);
}

.stack {
    display: grid;
    grid-template-columns: 1fr;
}

.stack span {
    font-weight: bold;
    grid-row-start: 1;
    grid-column-start: 1;
    /* font-size: 50%; */
    --stack-height: calc(100% / var(--stacks) - 1px);
    --inverse-index: calc(calc(var(--stacks) - 1) - var(--index));
    --clip-top: calc(var(--stack-height) * var(--index));
    --clip-bottom: calc(var(--stack-height) * var(--inverse-index));
    clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
    animation: stack 340ms cubic-bezier(.46, .29, 0, 1.24) 1 backwards calc(var(--index) * 120ms), glitch 2s ease infinite 2s alternate-reverse;
}

.stack span:nth-child(odd) {
    --glitch-translate: 8px;
}

.stack span:nth-child(even) {
    --glitch-translate: -8px;
}

@keyframes stack {
    0% {
        opacity: 0;
        transform: translateX(-50%);
        text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
    }

    ;

    60% {
        opacity: 0.5;
        transform: translateX(50%);
    }

    80% {
        transform: none;
        opacity: 1;
        text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
    }

    100% {
        text-shadow: none;
    }
}

@keyframes glitch {
    0% {
        text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
        transform: translate(var(--glitch-translate));
    }

    2% {
        text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
    }

    4%,
    100% {
        text-shadow: none;
        transform: none;
    }
}

a {
    color: rgb(177, 177, 177, 0.8);
    font-size: 32px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    margin: 6px 12px;
    text-decoration: underline rgba(122, 122, 122, 0.7);

}

a:hover {
    color: rgb(255, 105, 105);
    text-decoration: underline rgb(112, 0, 0);
}

.div_linkbr {
    margin: 8px 0px;
}


.div_link {
    margin: 8px 0px;
    /* position: absolute; */
    /* ensure that the text within this div is inside a flexbox covering maximum of 80% of the screen */
    width: 76vw;
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
    border: 0px;
}


#input_link {
    position: relative;
    width: 60vw;
    /* background-color: rgb(0, 0, 0); */
    border-color: rgba(177, 177, 177, 0.335);
    border-radius: 0%;
    border-style: dashed;
    background-color: #000000;
    color: rgb(177, 177, 177);
    font-size: 32px;
    font-family: 'Inconsolata', monospace;
    font-weight: 100dsf;
    margin: 12px 8px 0px 12px;

}

#input_link:focus {
    outline: none;
    border-color: rgba(112, 0, 0, 0.824);
    color: rgb(255, 105, 105);
    /* animate the dashed rotate */
    animation: dashed 1s nfinite;


}

.border {
    background: linear-gradient(90deg, rgba(112, 0, 0, 0.824) 50%), linear-gradient(90deg, rgba(112, 0, 0, 0.824) 50%, linear-gradient(0deg, rgba(112, 0, 0, 0.824) 50%, linear-gradient(0deg, rgba(112, 0, 0, 0.824) 50%);
                background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
                background-size: 15px 1px, 15px 1px, 1px 15px, 1px 15px;
                /* background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px; */
                animation: border-dance 10s infinite linear;
        }

        @keyframes border-dance {
            0% {
                background-position: 0px 0px, 300px 116px, 0px 150px, 216px 0px;
            }

            100% {
                background-position: 300px 0px, 0px 116px, 0px 0px, 216px 150px;
            }
        }  


        