@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Prompt:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Prompt:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500&display=swap');

* {
    box-sizing: border-box;
}
:root {
    --color-text: #4f0000;
    --color-orange: rgb(199, 113, 0);
    --color-green: #007a23;
    --color-header-bg: #ffffff46;
    --color-header-bg-opaque: #ffffff;
    --size-header-height: 5rem;
    font-size: 12px; font-family:  'Prompt', sans-serif;
}
body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
}
p {
    margin: 0; line-height: 1em;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    color: var(--color-orange);
    text-decoration: none;
    transition: color .4s ease-in-out;
}
a:hover {
    color: var(--color-green);
}

body > header {
    height: var(--size-header-height);
    display: flex; flex-direction: row;
    align-items: center; justify-content: space-between;
    padding: 1rem 2rem;
    position: sticky; top: 0;
    z-index: 10;
    background-color: var(--color-header-bg);
    backdrop-filter: blur(6px);
}
body > header a {
    font-weight: 600;
    padding: 1rem 2rem;
}
body > header > a.index
, body > header a.active {
    color: var(--color-green);
}
body > header > button {
    font-weight: 700;
}
body > header > nav {
    position: absolute; top: 100%; inset-inline: 0;
    background-color: var(--color-header-bg-opaque);
}
body nav > ul {
    display: flex; flex-direction: row; align-items: center;
    gap: 1em;
}
body > footer {
    text-align: center;
    margin-block: 1em;
}
@media (width < 768px) {
    body > header {
        padding-inline: 1rem;
    }
    body > header a {
        padding-inline: 1rem;
    }
    body > header > nav {
        padding-inline: 1rem;
    }
    body > header > nav.hidden {
        display: none;
    }
}
@media (width >= 768px) {
    body > header > button {
        display: none;
    }
    body > header > nav {
        display: contents;
    }
    body nav > ul {
        justify-content: end;
    }
    body > footer {
        font-size: 14px;
    }
}
@media (width > 1440px) {
    body > footer {
        font-size: 16px;
    }
}
@media (width >= 1760px) {
    body > footer {
        font-size: 20px;
    }
}

.content-tracks {
    max-width: 1450px; padding: 2rem 4rem;
    margin-inline: auto;
}
.font-logo {
    font-size: 20px !important;
}
@media (width < 768px) {
    .content-tracks {
        padding-inline: 2rem;
    }
}
@media (width >= 768px) {
    .font-logo {
        font-size: 24px !important;
    }
    .font-link {
        font-size: 16px;
    }
    .font-big-p {
        font-size: 16px !important;
    }
}
@media (width >= 1440px) {
    .font-logo {
        font-size: 36px !important;
    }
    .font-link {
        font-size: 20px;
    }
    .font-big-p {
        font-size: 24px !important;
    }
    .font-p {
        font-size: 16px !important;
    }
    .font-small-p {
        font-size: 14px !important;
    }
}
@media (width >= 1760px) {
    .font-logo {
        font-size: 42px !important;
    }
    .font-link {
        font-size: 24px;
    }
    .font-big-p {
        font-size: 30px !important;
    }
    .font-p {
        font-size: 20px !important;
    }
    .font-small-p {
        font-size: 16px !important;
    }
}
