* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Roboto', sans-serif; */
    font-family: 'Space Mono', monospace;
    background-color: #0c0c0c;
    color: #efefef;
    line-height: 1.6;
    font-size: 12px;
    /* text-wrap: wrap; */
    /* white-space: pre-wrap; */
    /* margin-top: 50px; */
    /* margin: 0 auto; */
    /* max-width: 80vw; */
    /* align-items: center; */
    /* height: 100vh; */
    overflow: hidden;
}
.content {
    /* display: flex; */
    /* flex-direction: row; */
    /* justify-content: center; */
    /* align-items: center; */
    width: 100vw;
    height: 100%;
}

.ascii pre{
    
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
    /* width: 100%; */
    /* color: #ced0d2; */
    color: #1a1a1a;
    font-size:11px; 
    font-family: 'Space Mono', monospace;
    line-height: 1;
    height: 100vh;
    width: 100%;
    z-index: 2; /* Ensure it is above the final color layer */
    justify-content: bottom;
    padding: 0;
    margin: 0;
    visibility: hidden;
    /* white-space: pre-wrap; */
    /* word-wrap: break-word; */
    margin: 0 auto;
}

.ascii pre.typing {
    visibility: visible;
}

.ascii pre.correcting {
    text-shadow: none;
}

.final-shadow {
    text-shadow: 2px 4px 1px rgb(93, 0, 255);
}

.reverse-shadow {
    color: #ced0d28b;
}

.final-color {
    color: #ac5fabc5; /* Add another layer of color */
    padding-left: 1px;
    padding-top: 2px;
}
sup {
    text-align: justify;
}

.final-color-layer {
    z-index: 1; /* Ensure it is below the original layer */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.final-white {
    color: #c8f7ff97; /* Add white color */
    z-index: -1;
    padding-right: -3px;
    padding-top: 1px;
}

.final-white-layer {
    z-index: 0; /* Ensure it is below all other layers */
    position: absolute;
    top: 51%;
    left: 1;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.cursor {
    display: inline-block;
    width: .5px; /* Adjust width as needed */
    height: 1em;
    background-color: #efefef9b;
    animation: blink .5s steps(1) infinite;
    vertical-align: bottom;
}

@keyframes blink {
    50% {
        background-color: #191919
    }
}

.text {
    margin: 0 auto;
    z-index: 100;
    color: rgb(255, 255, 255);
    position: fixed;
    left: 75%;
    bottom: 30vh;
    transform: translateX(-50%);
    text-overflow: wrap;
    background-color: #05050581;
    padding: 20px;
    transition: right 0.75s;
    text-shadow: -1px -1px 0 #050505, 1px -1px 0 #050505, -1px 1px 0 #050505, 1px 1px 0 #050505;
    /* min-width: 10%; */
    width: 45%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 2s ease-in 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
    
}
.text p {
    min-width: 42ch;
}
a, a:visited, a:active {
    color: rgb(114, 70, 180);
    text-decoration: none;
    font-size: inherit; /* Ensure the font size is consistent */
}

a:hover, svg:hover {
<<<<<<< HEAD
    color: #c499cb;
    text-decoration: underline;
    fill: #c499cb;
    stroke: #c499cb;
    font-size: inherit; /* Prevent font size reset when animation end */
=======
    animation: hoverEffect 3s ease forwards;
}

@keyframes hoverEffect {
    to {
        color: #c499cb;
        text-decoration: underline;
        fill: #c499cb;
        stroke: #c499cb;
    }
}

a:hover, svg:hover {
    animation: hoverEffect 3s ease forwards;
    transform: scale(2.125);
>>>>>>> parent of 08f9841 (Update styles.css)
}

.smilie {
    padding-top: 1rem;
}

@media (max-width: 645px) {
    .text {
        width: 100vw;  /* Make text div full width */
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        padding: 20px;
        text-align: center;
    }

    .text p {
        max-width: 100%;
        text-align: left;
    }

    .ascii pre {
        height: auto; /* Ensure the ASCII art resizes dynamically */
        max-height: 100vh; /* Keep it responsive */
        overflow: hidden; /* Avoid any scrolling issues */
        width: 100vw;
        font-size: 8px;
    }
}
