* {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Non-prefixed version, currently supported by Chrome, Edge, Opera, and Firefox */
}

@font-face {
    font-family: "JetBrains";
    src: url('fonts/JetBrains.ttf');
}
body {
    font-family:Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 20px;
    animation: colorChange 10s ease-in-out infinite;
    background-color: black;
}

@keyframes colorChange {
    0%, 100% {
        background-color: #aad8e6;
    }
    33% {
        background-color: #afeeee;
    }
    66% {
        background-color: #3636fa;
    }
}

.terminal-wrapper {
    position: absolute;
    top: 50px;
    left: 50px;
    background-color: #000;
    border-radius: 15px;
    color: #33ff00;
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: #333;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#terminal-text {
    font-size: 1.5em;
}

#command-list {
    list-style: inside;
    color: #33ff00;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 20px;
}

h3 {
    color: #4caf50;
    font-size: 1.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 'Arial', sans-serif;;
    padding: 5px;
    border-bottom: 2px solid #acaf50;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}


#social-list {
    list-style: inside;
    color: #33ff00;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 20px;
}

#terminal-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid #33ff00;
    color: #33ff00;
    font-family: 'Courier New', Courier, monospace;
    width: calc(100% - 20px);
    margin-top: 10px;
    box-shadow: 0px 4px 8px rgba(0,255,0,0.6);
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;

    outline: none;
    box-shadow: 0px 0px 8px 2px rgba(0, 2555, 0, 0.6);
}

#terminal-input:focus {
    background: rgab(255,255,255,0.2);
    box-shadow: 0px 0px 12px 3px rgba(0, 255, 0, 1);
}

#terminal-input::placeholder {
    color: #33ff00;
}

#open-terminal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}


.button {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.red {
    background-color: #ff605c;
}
.red:hover {
    cursor: pointer;
}
.yellow {
    background-color: #ffbd44;
}
.green {
    background-color: #00ca56;
}
.green:hover{
    cursor: pointer;
}

.title {
    flex-grow: 1;
    text-align: center;
    color: #fff;
}

.terminal-body {
    padding: 10px;
}

.terminal-text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.4;
}

.line-number {
    color: #888;
    margin-right: 10p;
    user-select: none;
}

.fade-out {
    animation: fadeOut ease-in-out 2s;
    -webkit-animation: fadeOut ease 2s;
    -moz-animation: fadeOut ease 2s;
    -o-animation: fadeOut ease 2s;
    -ms-animation: fadeOut ease 2s;
}

@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-moz-keyframes fadeOut {
    0% { opacity: 1;}
    100% {opacity: 0;}
}

@-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-o-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-ms-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@media screen and (max-width: 1024ppx) {
    .terminal-wrapper {
        max-width: 80%;
        left: 5%;
        right: 5%;
    }

    .terminal-header, .terminal-body {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 800px) {
    .terminal-wrapper {
        max-width: 90%;
        left: 5%;
        right: 5%;
        top: 10%;
        padding: 8px;
    }
    .terminal-header, .terminal-body, #terminal-input {
        font-size: 0.8em;
    }

    #open-terminal {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .terminal-wrapper {
        max-width: 95%;
        left: 2.5%;
        right: 2.5%;
    }

    .terminal-header, .terminal-body, #terminal-input, .terminal-text {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 600px) {
    .terminal-wrapper {
        max-width: 90%;
        left: 2.5%;
        right: 2,5%;
        top: 5%;
        padding: 6px;
        border-radius: 0;
    }
    .terminal-header, .terminal-body, #terminal-input, .terminal-text {
        font-size: 0.7em;
    }
    #open-terminal {
        font-size: 12px;
    }

    #terminal-text {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 400px) {
    .terminal-wrapper {
        max-width: 100%;
        left: 0;
        right: 0;
        top: 0;
        padding: 5px;
    }

    .terminal-header, .terminal-body, #terminal-input {
        font-size: 0.6em;
    }

    #open-terminal {
        font-size: 10px;
    }

    #terminal-text {
        font-size: 1em;
    }
}