html, body
{
    overscroll-behavior: none;
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    --primary-color: black;
    --secondary-color: #737373;
    --accent-color: #ffed00;
    --border-color: #c4c4c4;

    --content-width: 620px;
    --player-height: 220px;
}
body::before
{
    z-index: -1;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    content: "";
    background-image: url('../images/background.jpg');
    background-size: auto 100vh;
    background-position: right top;
    background-repeat: no-repeat;
}


h1, h2, h3, h4, h5, h6, p
{
    margin: 0;
    padding: 0;
}

h1
{
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
h2
{
    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
    margin-bottom: 11px;
}

.accent-text
{
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 0 10px;
    width: fit-content;
    position: relative;
    z-index: 0;
}
.accent-text::before
{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
    z-index: -1;
}