@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


h1,h2, h3, h4, h5, h6 {
  font-family: "Playfair Display" !important;
font-weight: 200 !important
}

p {
	font-family: poppins;
    font-size: 0.8em;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box
}

:root {
	--main-color: #195447;
	--sec-color: #f9f6f2
}

/* Disable all text selection highlight */
::selection,
::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}

/* Remove Chrome focus borders and glow */
*:focus,
:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Inputs */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

/* Autofill background + borders */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
            box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}

/* Remove mobile tap highlight */
* {
    -webkit-tap-highlight-color: transparent !important;
}



/* Disable all text selection */
* {
    user-select: none !important;
    -webkit-user-select: none !important;
	scroll-behavior: smooth;
}

/* Remove Chrome selection highlight */
::selection,
::-moz-selection {
    background: transparent !important;
}

/* Remove Chrome autofill yellow background */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}

/* Disable focus outlines */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Optional (mobile copy/long-press disable) */
* {
    -webkit-touch-callout: none !important;
}

/* Disable dragging */
img, a, * {
    -webkit-user-drag: none;
    user-drag: none;
}
