@import url("https://use.typekit.net/tvk8mqp.css");




body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(to right, #280700, #00002b, #280700  ); /* Define your gradient colors */
    background-size: 200% 100%; /* Initial background size */
    animation: gradientAnimation 4s linear infinite; 
    margin: 0;
}
@keyframes gradientAnimation {
    0% {
        background-position: 100% 0; /* Start from the right edge */
    }
    100% {
        background-position: -100% 0; /* End at the left edge */
    }
}

#topbar {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    height: max-content;
}




h3 {
    text-align: center;
    font-family: "dico-code-two", mono;
    font-weight: 700;
    font-style: normal;
    animation:  fontAnimation 3s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.792);
}

@keyframes fontAnimation {
    0% {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
      }
      25% {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
      }
      50% {
        text-shadow: 0 0 15px rgb(0, 0, 0);
      }
      75% {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
      }
      100% {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
      }

}

#my-name {
    color: rgb(0, 150, 150);
    animation: nameAnimation 5s ease-in-out infinite;
}

@keyframes nameAnimation {
    0% {
        color: rgb(0, 255, 255);
    }

    50% {
        color: rgb(255, 0, 0);
    }

    100% {
        color: rgb(0, 255, 255);
    }
}

#cursor-letter {
    background-color: rgb(150, 0, 115);
    text-shadow: 0px 0px 3px black;
    animation: cursorAnimation 5s linear infinite;
}

@keyframes cursorAnimation {

    0% {
        background-color: rgb(255, 0, 0);
    }

    10% {
        background: none;
    }
    20% {
        background-color: #d0ff00;   
    }

    30% {
        background: none;
    }
    40% {
        background-color: #00ff55;
    }


    50% {
        background: none;

    }
    60% {
        background-color: rgb(0, 85, 255);

    }
    70% {
        background: none;

    }
    80% {
        background-color: rgb(217, 0, 255);

    }
    90% {
        background: none;

    }

    100% {
        background-color: rgb(255, 0, 0);
    }

}




#horizon {
    width: 100vw;
    height: 10px;
    position: fixed;
    top: 14%;
    background: linear-gradient(45deg, black, rgb(176, 158, 158));
    background-size: 200% 200%;
    animation: gradientAnimation 3s linear infinite;
    display: none;
}




#cntr-btns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

button {
    padding: 8px;
    height: 70px;
    width: 130px;
    border-radius: 30px;
    margin: 16px;
    background-color: rgba(0, 255, 255, 0.744);
    box-shadow: 2px 2px 24px 4px rgba(94, 198, 163, 0.173);
}

button:hover{
    padding: 9px;
    background-color: rgb(255, 250, 100);
    border: 0.5px solid wheat;
    box-shadow: 2px 2px 30px 4px rgba(105, 255, 205, 0.348);
    cursor: pointer;
}


.fullscreen-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

/* Add these styles to your existing CSS */
.old-monitor {
    background-color: #000;
    border: 8px solid #333;
    border-radius: 10px;
    padding: 10px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 128, 0, 0.5);
}

.screen {
    background-color: #000;
    color: #00FF00;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 5px;
    height: 300px;
    overflow: auto;
    position: relative;
}


@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-animation {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: loading 1s linear infinite;
}

