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

body {
    font-family: 'Fira Code', monospace;
    background-color: #1c1228;
    color: #efd2b1;
    margin: 0;
    padding: 10px 50px 0 50px;
}

header,
main,
footer {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 10px;
    box-sizing: border-box;
}

#about {
 display: flex;
 align-items: start;
 gap: 2rem;
 margin-bottom: 3rem;
}

#about p {
 max-width: 55ch;
}

#about img {
 width: 260px;
 height: 250px;
 object-fit: fill;
 border-radius: 51%;
 box-shadow: 20px 15px 50px #f26392;
}

#files-overview {
    display: flex;
    flex-direction: row;
    gap: 5%;
}

h1,
h2,
h3 {
    color: #f4bf75;
    font-family: 'Fira Code', monospace;
    margin: 25px 0px 5px 0px;
}

h1:hover,
h2:hover,
h3:hover {
    animation: lightbulb-flicker 1s steps(5, end) forwards;
}

ul {
    margin: 0px;
}

@keyframes lightbulb-flicker {
    0% {
        text-shadow: none;
    }

    10% {
        text-shadow: 0 0 5px #f4bf75;
    }

    20% {
        text-shadow: none;
    }

    30% {
        text-shadow: 0 0 10px #f4bf75;
    }

    40% {
        text-shadow: none;
    }

    50% {
        text-shadow: 0 0 15px #f4bf75;
    }

    100% {
        text-shadow: 0 0 15px #f4bf75;
    }
}

p,
a {
    padding: 0px;
    margin: 0px;
    font-size: 1em;
}

a {
    color: #f26392;
    text-decoration: dotted underline;
}

.prompt {
    color: #f4bf75;
    padding-top: 10px;
}

.place-cursor::after {
    content: "|";
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.pink {
    color: #f26392;
}