:root {
    --primary-color: #FA2B4B;
}

@font-face {
    font-family: 'HONOR Sans CN';
    src: url('./fonts/HONORSansCN-Regular.ttf') format('truetype');
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HONOR Sans CN';
    src: url('./fonts/HONORSansCN-Medium.ttf') format('truetype');
    font-weight: 500;
    /* Medium */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HONOR Sans CN';
    src: url('./fonts/HONORSansCN-Bold.ttf') format('truetype');
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HONOR Sans CN';
    src: url('./fonts/HONORSansCN-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    /* Extra Bold */
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'HONOR Sans CN', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #E5DED9;
    background-image: url(images/background-article.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 50px;
    position: relative;
}