html, body {
    height: 100%;
}

body {
    background-color:rgb(234, 221, 235);
    font-family: 'Outfit';
    font-weight: 400;
    transition: background-color 0.1s;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    max-width: 80vw;
    height: 100%;
    margin: 0 auto;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0px auto;
}

.terminal-container {
    display: flex;
    flex-direction: column;
    width: 70vw;
    height: 80vh;
    font-family: 'Hack';
    box-shadow: 10px 10px rgb(208, 195, 209);
}

.terminal-appbar {
    background-color: rgb(178, 154, 179);
    padding: 0.5rem;
    border-radius: 0.2rem 0.2rem 0 0;
    text-align: center;
    border-bottom: 2px solid rgb(156, 133, 156);
    cursor: default;
    display: grid;
    grid-template-columns: 1fr 0fr;
    align-items: center;
}

.terminal-tab-header {
    background-color: rgb(159, 138, 160);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.terminal-tab {
    background-color: rgb(159, 138, 160);
    font-weight: bold;
    display: grid;
    grid-template-columns: 9fr 1fr;
    align-items: center;
    cursor: default;
}

.terminal-tab.active {
    background-color: rgb(178, 154, 179);
    border-bottom: 3px solid rgb(198, 172, 199);
}

.terminal-tab span {
    padding: 10px;
    margin: 0;
    text-align: center;
    overflow-x: hidden;
}

.terminal-appbar h1 {
    color: white;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
}

.terminal-tab-content.inactive {
    display: none;
}

.terminal-tab-close {
    justify-content: center;
    display:flex;
}

.terminal-tab-close:hover svg {
    background-color: rgba(255, 255, 255, 0.774);
    border-radius: 50%;
    
}
.terminal-tab-close:hover svg path {
    stroke: rgb(159, 138, 160);
}

.close-img {
    width: 30px;
    height: 30px;
}

.terminal {
    padding: 1rem 1rem;
    color: white;
    background-color: black;
    overflow-y:scroll;
    scrollbar-color: white black;
    scrollbar-width: auto;
    flex-grow: 1;
}

.terminal a {
    color: white;
    text-decoration: none;
}

.terminal a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.terminal-cursor {
    width: 10px;
    background-color: white;
    -webkit-animation: blink 1.5s step-end infinite;
    animation: blink 1.5s step-end infinite;
}

@-webkit-keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}
.terminal-input {
    background: none;
    border: none;
    color:greenyellow;
}

.terminal-closed {
    display: none;
    font-family: 'Hack';
    width: min(50rem, 80vw);
}

.reload-page {
    color: #41FF00;
    background-color: black;
    border:none;
    font-family: 'Hack';
    font-size: medium;
    cursor: pointer;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.reload-page:hover {
    color: black;
    background-color: #41FF00;
}

.reload-page-active {
    color: black;
    background-color: #41FF00;
}

.row {
    /*display: flex;
    flex-direction: row;
    flex-wrap: wrap;*/
    display: inline-grid;
    grid-template-columns: auto auto auto;
}

.cursor {
    display: inline-block;
    width: 10px;
    background-color: white;
    -webkit-animation: blink 1.5s step-end infinite;
    animation: blink 1.5s step-end infinite;
}
.input-span {
    display: flex;
    overflow: hidden;
}

.go-back a {
    text-decoration: none;
    color: black;
}

.go-back a:hover {
    color:rgba(81, 31, 102, 1);
}

.ls {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1rem;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

/* skills */



.skills-content {
    padding: 3rem;
}

.skill-table-entry {
    display: inline-flexbox;
}

.skills-section {
    display: flex;
    flex-direction: column;
}

.skills-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 70vw;
    margin-bottom: 1rem;
}

.skill-entry {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: white;
    border-radius: 999px;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    cursor:default;
    background: #341440;
    background: linear-gradient(90deg,rgba(52, 20, 64, 1) 0%, rgba(81, 31, 102, 1) 80%, rgb(68, 9, 53) 100%);    
}

/*.skill-entry:hover {
    background: linear-gradient(90deg,rgb(64, 25, 78) 0%, rgb(93, 36, 117) 80%, rgb(66, 11, 52) 100%);    
}*/

/*.skill-entry.frontend {
    background:rgb(172, 114, 172);
}
.skill-entry.backend {
    background: rgb(124, 72, 124);
}
.skill-entry.sonstiges {
    background: rgb(85, 11, 85);
}*/

.skills-section h2 {
    margin-bottom: 0;
}

/* projects */
.project-list {
    display: grid;
    /*grid-auto-flow: column;*/
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    padding-bottom: 1rem;
}

.project-entry {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.project-entry h1 {
    font-size: 1.5rem;
}

.project-entry img {
    max-width:100%;

}

/* fonts */

@font-face {
    font-family: 'Outfit';
    src: url(/static/fonts/Outfit-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Hack';
    src: url(/static/fonts/Hack/Hack-Regular.ttf);
}

/* small screens */

@media (max-width: 600px) {
    .terminal-container {
        width: 90vw;
        height: 80vh;
    }
}