@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Manrope:wght@300;400;500;600;700&display=swap');

:root{
    --black:#050505;
    --deep:#0B0B0B;
    --ivory:#F7F2EA;
    --gold:#C7A45D;
    --gold-soft:#E6D4A5;
    --bronze:#8F7352;
    --warm-gray:#A8A29A;
    --line:rgba(247,242,234,.14);
    --glass:rgba(247,242,234,.06);
    --display:"Cormorant Garamond", Georgia, serif;
    --sans:Manrope, Inter, system-ui, sans-serif;
    --shadow:0 50px 160px rgba(0,0,0,.55);
}

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

html{scroll-behavior:smooth}

body{
    background:var(--black);
    color:var(--ivory);
    font-family:var(--sans);
    overflow-x:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}
