
/* variable define */
:root {
    --primary-color: #ab2c48;
    --secondary-color: #43121d;
    --third-color: #f98169;
    --white-color: #fff;
    --text-color: #555;
    --text-gray: #999;
    --black-color: #000;
    --primary-font: "Alumni Sans";
    --secondary-font: "League Gothic";
    --third-font: "Livvic";
    --heading-font-size: 95px;
}

.font_alumni{
    font-family: var(--primary-font);
}

.font_gothic{
    font-family: var(--secondary-font);
}

.font_livvic{
    font-family: var(--third-font);
}