.container body{
    font-family: Sanchez, LatoOffline, sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Sanchez:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&family=Jersey+25&display=swap');
/* ---- reset ---- */

/* Đặt flex cho body */
html, body {
    height: 100%; /* Để đảm bảo body chiếm toàn bộ chiều cao */
    margin: 0; /* Xóa khoảng cách mặc định */
}

body {
    display: flex;
    flex-direction: column; /* Sắp xếp theo chiều dọc */
    margin: 0;
    font:normal 75% Arial, Helvetica, sans-serif;
    font-size: large;
    /* font-size: 1rem; */
}

/* Set the canvas to cover the entire background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%; /* Đây có thể được điều chỉnh */
    /* background-color: #ffffff; */
    top: 0;
    left: 0;
    z-index: -1; /* Đằng sau các nội dung khác */
}

main {
    flex: 1; /* Chiếm không gian còn lại */
    position: relative; /* Đảm bảo nội dung chính nằm trên particles */
    z-index: 1; /* Đưa nội dung chính lên trên particles */
}

footer {
    margin-top: auto; /* Kéo footer xuống đáy */
}

a {
    /* color: #ff00ff; */
    text-decoration: none;
}