/*==============================
BOOZ BAZZAR
Created by Vansh Sheth
==============================*/

:root{

    --primary:#D4AF37;
    --secondary:#6D071A;
    --accent:#FF7B00;

    --bg:#05070F;
    --bg2:#0B1220;

    --white:#ffffff;
    --text:#d4d4d4;

    --glass:rgba(255,255,255,.06);

    --shadow:0 15px 40px rgba(0,0,0,.45);

    --radius:18px;

    --transition:.4s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Outfit',sans-serif;
    background:var(--bg);
    color:var(--white);
    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}

ul{

    list-style:none;

}

.container{

    width:min(1400px,92%);
    margin:auto;

}