/*
Theme Name: Wedding
Theme URI: 
Author: Duy Nguyen
Description: website wedding fancy.
Version: 1.0
Text Domain: wedding
*/


:root {
    --font-family-secondary: "Beautique Display";
    --color-primary: #11122A;
    --bg-active: orange;
}

/* Reset margin và padding cho tất cả phần tử */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cài đặt font mặc định */
body {
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Loại bỏ viền và nền cho các thẻ input, button */
input,
button,
textarea {
    border: none;
    background: none;
    outline: none;
    padding: 0;
}

/* Đặt lại kiểu cho các thẻ h1-h6 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0;
}

/* Loại bỏ các điểm nhấn mặc định của link */
a {
    text-decoration: none;
    color: inherit;
}

/* Đặt lại kiểu cho danh sách */
ul,
ol {
    list-style: none;
}