/* Font regular */
@font-face {
    font-family: 'MyCustomFont';
    src: url('../font/font-regular.woff2') format('woff');
    font-weight: normal;
    /* Dành cho kiểu chữ thông thường */
    font-style: normal;
}

/* Font bold */
@font-face {
    font-family: 'MyCustomFont';
    src: url('../font/font-bold.woff2') format('woff');
    font-weight: bold;
    /* Dành cho kiểu chữ đậm */
    font-style: normal;
}



:root {
    --active-color: #f03a39;
    --white-color: #ffffff;
    --black-color: #000;
    --blue-color: #3b589c;
    --bg-color: #192642;
    --extra-bg-color: #131f38;
    --form-color: #4b4b4a;
    --brown-color: rgb(62, 62, 62);
    --border-content: #dee2e6
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: inherit;
}

body {
    font-size: 100%;
    box-sizing: border-box;
    line-height: normal;
    font-family: 'MyCustomFont', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

h1 {
    font-weight: bold;
    margin: 0px;
}

p {
    font-weight: normal;
    margin: 0px;
}