:root {
    --border-color: #f4fcc0;
    /* Border color */
    --accent-color: #f4fcc0;
    /* Accent color */
    --bg-color: #fb8569;
    /* Background color */
    --text-color: #001d21;
    /* Text color */
    --hover-shadow-color: #f4fcc0;
    /* Shadow color on hover */
}

.blogArticle {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    max-width: 400px;
    max-height: 350px;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
    transition: border-color 0.3s ease-in-out;
}

.blogArticle:hover {
    box-shadow: 0 0 0.5em 0 var(--hover-shadow-color);
    border-color: var(--hover-shadow-color);
    color: var(--bg-color);
}

* {
    font-size: clamp(12px, 2vw, 15px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

pre {
    font-size: 4px;
    line-height: 1;

}

body {
    color: var(--bg-color);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    width: 100%;
    background-color: var(--text-color);
    background-size: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: clamp(12px, 2vw, 15px);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

body .inlineContainer {
    display: inline-flex;
}

body .commandName {
    color: var(--border-color);
}

body #terminal {
    font-family: monospace;
    color: var(--bg-color);
    height: 95%;
    width: 95%;
    margin: 2.5%;
    padding: 20px;
}

body #terminal #output {
    margin-bottom: 10px;
}

body #terminal #input {
    margin-top: 20px;
    padding-bottom: 20px;
}

body #terminal #prompt {
    font-weight: 700;
}

body #terminal #cmd {
    font-size: clamp(12px, 2vw, 15px);
    background: 0 0;
    border: none;
    color: var(--bg-color);
    outline: 0;
    transition: caret-color 0.3s ease;
    max-width: 70%;
    min-width: 45%;
    caret-color: transparent;
    animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {
    0%, 100% { caret-color: var(--bg-color); }
    50% { caret-color: transparent; }
}

body #terminal #cmd:focus {
    animation: none;
    caret-color: var(--bg-color);
}

body #terminal #cmd:focus:active {
    animation: none;
    caret-color: var(--bg-color);
}

body #terminal #suggestions {
    margin-top: -20px;
    color: var(--bg-color);
    opacity: 50%;
}

body #terminal #suggestions .selected {
    font-weight: 800;
    color: #7fffd4;
}

body #terminal .ownerTerminal {
    font-size: 20px;
    color: #5abb9a;
}

input[type="text"] {
    font-family: monospace;
    font-size: clamp(12px, 2vw, 15px);
    cursor: default;
    -webkit-text-fill-color: var(--bg-color);
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    -webkit-text-decoration-line: none !important;
    -moz-text-decoration-line: none !important;
    /* Additional properties to remove spell check indicators */
    -webkit-user-modify: read-write-plaintext-only;
    -moz-user-modify: read-write-plaintext-only;
    -ms-user-modify: read-write-plaintext-only;
    user-modify: read-write-plaintext-only;
    -webkit-tap-highlight-color: transparent;
    /* Additional properties to remove red dotted lines */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    ime-mode: disabled;
    input-security: none;
    -webkit-text-security: none;
    -moz-text-security: none;
    /* Additional properties to prevent spell check and underlines */
    autocomplete: off;
    autocorrect: off;
    autocapitalize: off;
    -webkit-rtl-ordering: logical;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-writing-mode: horizontal-tb !important;
    -webkit-text-size-adjust: 100%;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    text-align: start;
    -webkit-text-emphasis: none;
    -webkit-text-justify: auto;
}

input[type="text"]:focus {
    outline: none;
    -webkit-text-fill-color: var(--bg-color);
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

input[type="text"]::selection {
    background-color: transparent;
}

input[type="text"]::-moz-selection {
    background-color: transparent;
}

@keyframes destroyAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(0);
        opacity: 0.2;
    }
}

.command-input {
    font-weight: 400;
}

.command-input.command-entered {
    font-weight: 700;
}

.nameErr {
    font-size: 100px;
}

.descErr {
    font-size: 10px;
}

.about-me {
    min-width:330px;
    max-width: 1100px;
}

.about-text {
    text-align: justify;
}

.exp-list {
    max-width: 800px;
}

.projectsDiv {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 20px;
}

.article-wrapper {
    margin: 10px;
    width: 250px;
    transition: 0.15s all ease-in-out;
    border-radius: 2px;
    padding: 5px;
    border: 4px solid transparent;
    cursor: pointer;
    background-color: var(--bg-color);
}

.article-wrapper:hover {
    box-shadow: 10px 10px 0 var(--hover-shadow-color), 20px 20px 0 plum;
    border-color: #2d0922;
    transform: translate(-20px, -20px);
}

.article-wrapper:active {
    box-shadow: none;
    transform: translate(0);
}

.article-wrapper:hover .project-hover {
    transform: rotate(-45deg);
    background-color: #a6c2f0;
}

.project-info {
    padding: 10px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-info .project-title {
    font-size: 2em;
    margin: 0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-color);
}

.project-info .project-description {
    color: var(--text-color);
    font-weight: 300;
}

.project-info .flex-pr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-hover {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 9px;
    transition: all 0.3s ease;
}

.container-project {
    width: 100%;
    height: 170px;
    background: gray;
}

body .container .flex {
    display: inline-flex;
    margin: 20px;
    align-items: center;
    min-width: 300px;
}

.skillBar {
    width: 100%;
    min-width: 100px;
    max-width: 130px;
    height: 30px;
    border: 1px solid var(--bg-color);
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.skillBarItem1 {
    width: 100%;
    height: 30px;
    background: var(--bg-color);
    animation: slide1 2s ease-in-out;
}

.skillBarItem2 {
    width: 100%;
    height: 30px;
    background: var(--bg-color);
    animation: slide2 2s ease-in-out;
}

.skillBarItem3 {
    width: 90%;
    height: 30px;
    background: var(--bg-color);
    animation: slide3 2s ease-in-out;
}

.skillBarItem4 {
    width: 80%;
    height: 30px;
    background: var(--bg-color);
    animation: slide4 2s ease-in-out;
}

.skillBarItem5 {
    width: 70%;
    height: 30px;
    background: var(--bg-color);
    animation: slide5 2s ease-in-out;
}

.skillBarItem6 {
    width: 70%;
    height: 30px;
    background: var(--bg-color);
    animation: slide6 2s ease-in-out;
}

.skillBarItem7 {
    width: 60%;
    height: 30px;
    background: var(--bg-color);
    animation: slide7 2s ease-in-out;
}

@keyframes slide1 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes slide2 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes slide3 {
    from {
        width: 0;
    }

    to {
        width: 90%;
    }
}

@keyframes slide4 {
    from {
        width: 0;
    }

    to {
        width: 80%;
    }
}

@keyframes slide5 {
    from {
        width: 0;
    }

    to {
        width: 70%;
    }
}

@keyframes slide6 {
    from {
        width: 0;
    }

    to {
        width: 70%;
    }
}

@keyframes slide7 {
    from {
        width: 0;
    }

    to {
        width: 60%;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.command-input.command-entered {
    font-weight: 700;
}

.nameErr {
    font-size: 100px;
}

.descErr {
    font-size: 10px;
}

.about-me {
    min-width:330px;
    max-width: 1100px;
}

.about-text {
    text-align: justify;
}

.exp-list {
    max-width: 800px;
}

.projectsDiv {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 20px;
}

.article-wrapper {
    margin: 10px;
    width: 250px;
    transition: 0.15s all ease-in-out;
    border-radius: 2px;
    padding: 5px;
    border: 4px solid transparent;
    cursor: pointer;
    background-color: var(--bg-color);
}

.article-wrapper:hover {
    box-shadow: 10px 10px 0 var(--hover-shadow-color), 20px 20px 0 plum;
    border-color: #2d0922;
    transform: translate(-20px, -20px);
}

.article-wrapper:active {
    box-shadow: none;
    transform: translate(0);
}

.article-wrapper:hover .project-hover {
    transform: rotate(-45deg);
    background-color: #a6c2f0;
}

.project-info {
    padding: 10px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-info .project-title {
    font-size: 2em;
    margin: 0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-color);
}

.project-info .project-description {
    color: var(--text-color);
    font-weight: 300;
}

.project-info .flex-pr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-hover {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 9px;
    transition: all 0.3s ease;
}

.container-project {
    width: 100%;
    height: 170px;
    background: gray;
}

body .container .flex {
    display: inline-flex;
    margin: 20px;
    align-items: center;
    min-width: 300px;
}

.skillBar {
    width: 100%;
    min-width: 100px;
    max-width: 130px;
    height: 30px;
    border: 1px solid var(--bg-color);
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.skillBarItem1 {
    width: 100%;
    height: 30px;
    background: var(--bg-color);
    animation: slide1 2s ease-in-out;
}

.skillBarItem2 {
    width: 100%;
    height: 30px;
    background: var(--bg-color);
    animation: slide2 2s ease-in-out;
}

.skillBarItem3 {
    width: 90%;
    height: 30px;
    background: var(--bg-color);
    animation: slide3 2s ease-in-out;
}

.skillBarItem4 {
    width: 80%;
    height: 30px;
    background: var(--bg-color);
    animation: slide4 2s ease-in-out;
}

.skillBarItem5 {
    width: 70%;
    height: 30px;
    background: var(--bg-color);
    animation: slide5 2s ease-in-out;
}

.skillBarItem6 {
    width: 70%;
    height: 30px;
    background: var(--bg-color);
    animation: slide6 2s ease-in-out;
}

.skillBarItem7 {
    width: 60%;
    height: 30px;
    background: var(--bg-color);
    animation: slide7 2s ease-in-out;
}

@keyframes slide1 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes slide2 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes slide3 {
    from {
        width: 0;
    }

    to {
        width: 90%;
    }
}

@keyframes slide4 {
    from {
        width: 0;
    }

    to {
        width: 80%;
    }
}

@keyframes slide5 {
    from {
        width: 0;
    }

    to {
        width: 70%;
    }
}

@keyframes slide6 {
    from {
        width: 0;
    }

    to {
        width: 70%;
    }
}

@keyframes slide7 {
    from {
        width: 0;
    }

    to {
        width: 60%;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}