@font-face {
    font-family: LeagueSpartan;
    src: url(../fonts/League_Spartan/static/LeagueSpartan-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: LeagueSpartan;
    src: url(../fonts/League_Spartan/static/LeagueSpartan-Bold.ttf);
    font-weight: bold;
}
@font-face {
    font-family: LeagueSpartan;
    src: url(../fonts/League_Spartan/static/LeagueSpartan-ExtraBold.ttf);
    font-weight: 1000;
}
@font-face {
    font-family: LeagueSpartan;
    src: url(../fonts/League_Spartan/static/LeagueSpartan-Black.ttf);
    font-weight: 1100;
}


@font-face {
    font-family: Quicksand;
    src: url(../fonts/Quicksand/static/Quicksand-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: Quicksand;
    src: url(../fonts/Quicksand/static/Quicksand-Bold.ttf);
    font-weight: bold;
}


:root {
    --primary-light: #f4eef6;
    --primary-dark: #141414;
    --details-light: #933dc9;
    --details-dark: #53118f;
    --header-dark: #000000;
    --header-light: #fbfaee;
    --text-dark: #242424;
    --text-light: #fbfaee;
    --footer-bg: #1e1b1e;
    --nav-srollable-bg: #141414db;
    --gray-text: #2f2f2f;
    --details-light-hover: #933dc975;
}

.italic-text {
    font-style: italic;
}
.gray-text {
    color: var(--gray-text);
}
.bold-text {
    font-weight: bold;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
p {
    line-height: 1.5em;
}
.row {
    margin: 0;
    padding: 0;
}

body, section, article {
    position: relative;
    color: var(--text-light);
    font-family: Quicksand;
    text-decoration: none;
}
#price-list {
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    max-width: 1150px;
    margin: 0 auto;
}
#price-list h2 {
    font-family: LeagueSpartan;
    font-size: 3em;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 5px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--details-light) 50%, var(--primary-dark)) 1;
}
#price-list .sec-content {
    padding: 10px 15px;
}
#price-list h3 {
    font-size: 1.3em;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 5px;
}
#price-list .price-block {
    padding: 5px 20px;
}
#price-list .price-item {
    transition: background 0.3s ease;
}
#price-list .price-item:hover {
    background: var(--details-light-hover);
    transition: background 0.3s ease;
}
#price-list p {
    margin: 4px 0;
}

@media (max-width: 600px) {
    #price-list h2 {
        font-size: 2em;
    }
}