:root {
    --pico-font-family: 'Press Start 2P', monospace;
    --pico-font-size: 13px;
    --pico-line-height: 1.8;
}

audio {
    width: 100%;
}

textarea, select {
    font-family: var(--pico-font-family);
}

input::placeholder {
    color: white;
}

input {
    background-color: black;
    color: white;
    border: none;
}

button {
    background: orange;
    border: none;
}

html, body {
    font-family: var(--pico-font-family);
    background-color: #4c5844;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #3f4738;
    text-align: center;
}

.about-me-picture {
    border-radius: 10px;
}

.music-player-section {
    background: #3f4738;
    margin-bottom: 100px;
}

nav {
    justify-content: center;
}

.nav-bar-link {
    color: orange;
}

.nav-bar-link:hover {
    text-decoration: none;
    color: rgb(180, 118, 2);
    transition-duration: 0.25s;
}

.terminal-window {
    height: 350px;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #000;
    padding: 1.2rem;
    min-height: 180px;
}

.terminal-window::-webkit-scrollbar {
  width: 8px;
}

.terminal-window::-webkit-scrollbar-track {
  background: #111111;
}

.terminal-window::-webkit-scrollbar-thumb:hover {
  background: #00cc00;
}

.container.track{
    margin-bottom: 25px;
    padding: 15px;
    background: #4c5844;
}

.container.lasttrack{
    padding: 15px;
    background: #4c5844;
}

.portfolio-article {
    background: #3f4738;
}
    


@media (max-width: 576px) {
    :root {
        --pico-font-size: 9px;
    }
}

@media (max-width: 768px) {
    :root {
        --pico-font-size: 10px;
    }
}

@media (max-width: 1024px) {
    :root {
        --pico-font-size: 11px;
    }
}