:root {
    --font-fantasy: 'Fontatica 4F', sans-serif, -apple-system;
    --color-warning-accent: #FF003D;
    --color-prize-name: #4A4A4A;
}

body {
    background-color: var(--color-main-light);
    color: var(--color-main-dark);
}

.section p,
.section ul,
.section ol {
    font-size: 20px;
    font-weight: 500;
}

.btn.btn-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 14px 20px;
    padding-right: 12px;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--color-main-light) !important;
    background-color: var(--color-main-dark);
    font-size: 20px;
    text-align: center;
}

.btn.btn-landing::after {
    --size: 16px;
    content: '';
    display: block;
    width: var(--size);
    height: var(--size);
    background-image: url('../img/btn-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: 6px;
}

.heading {
    font-family: var(--font-fantasy);
    color: var(--color-bg-footer-theme-blue);
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.flex-row::before,
.flex-row::after {
    content: none;
}

@media screen and (max-width: 991px) {

    .btn.btn-landing,
    .section p,
    .section ul,
    .section ol {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {

    .btn.btn-landing,
    .section p,
    .section ul,
    .section ol {
        font-size: 16px;
    }
}

@media screen and (max-width: 479px) {

    .btn.btn-landing,
    .section p,
    .section ul,
    .section ol {
        font-size: 14px;
    }
}