@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Michroma&family=Oswald&display=swap');
.michroma-regular {
    font-family: "Michroma", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header {
    background-color: #202020;
    width: 100%;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid white;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-family: "Michroma", sans-serif;
    font-size: 1.1rem;
    color: darkgreen;
    background-color: #171414;
    border: 2px solid darkgreen;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.6s ease;
    margin-bottom: 45px;
}

.download-button:hover {
    background-color: darkgreen;
    color: #171414;
    transform: scale(1.1);
}

/* Position both canvas backgrounds */
#matrix-left, #matrix-right {
    position: fixed;
    top: 0;
    height: 100%;
    z-index: -1; /* Behind content */
    pointer-events: none; /* Click through */
}

/* Left side */
#matrix-left {
    left: 0;
    width: 17%; /* Adjust width as needed */
}

/* Right side */
#matrix-right {
    right: 0;
    width: 17%;
}

main {
    background-color: #171414;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Michroma", sans-serif;
    width: 70%;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 20px;
    border-bottom: 2px solid white;
}

body {
    background-color: #2b2b2b;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: center;
    color: white;
    margin: 0;
    z-index: 1;
    font-family: "Michroma", sans-serif;
}
h1 {
    font-family: "Michroma", sans-serif;
    color: white;
    font-size: 400%;
    text-align: center;
}

h2 {
    font-size: 250%;
    text-align: center;
    scroll-margin-top: 5rem;
}

h3 {
    text-align: center;
    font-size: 150%;
}

h4 {
    font-size: 120%;
}

#navigation-cv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0;
    padding: 0;
}

button {
    color: darkgreen;
    background-color: transparent;
    transform: scale(1.7);
    transition: transform 0.6s ease;
    margin: 15px;
}

button:hover {
    transform: scale(2.1);
}

#Text-Feld-Vorstellung {
    display: flex;
    justify-content: center;  /* Horizontal zentrieren */
    align-items: center;      /* Vertikal zentrieren */
}

.header-list  {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: "Michroma", sans-serif;
    font-size: 160%;
    list-style-type: none;
    padding: 0;
    gap: 70px;
    margin-bottom: 20px;
}
a {
    color: white;
    margin: 0;
    text-decoration: underline;
}
.header-list li a:hover {
    color: darkgreen;
}

.main-header {
    color: white;
    margin-bottom: 0;
    background-clip: text;
    background-size: 200% auto;
}
body::selection {
    color: #006400;
    background: white;
}

/* a:visited {
    color: turquoise;
} */

#console {
    background-color: black;
    color: #006400;
    font-family: monospace;
    padding: 10px;
    width: 100%;
    max-width: 800px;
    margin: auto;
    border: 2px solid #006400;
    height: 300px;
    overflow-y: auto;
}

#matrix-console-part {
    border-bottom: 2px solid white;
    width: 100%;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

#output {
    white-space: pre-wrap;
}

#input-line {
    display: flex;
    caret-color: transparent;
}

#prompt {
    margin-right: 5px;
}

#input {
    outline: none;
    min-width: 1px;
}

.cursor {
    display: inline-block;
    width: 10px;
    background-color: #006400;
    animation: blink 1s steps(1) infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% { background-color: transparent; }
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-family: "Michroma", sans-serif;
    font-size: 1.1rem;
    color: darkgreen;
    background-color: #171414;
    border: 2px solid darkgreen;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.6s ease;
    margin-bottom: 45px;
}

.link-button:hover {
    background-color: darkgreen;
    color: #171414;
    transform: scale(1.1);
}

.console-hint {
    text-align: center;
    font-family: monospace;
    color: white;
    font-size: 125%;
}