/* Importing Fonts  */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/* Variables setup  */
:root {
    --primary-color: #741b47;
    --secondary-color: black;
    --nunito-family: "Nunito Sans", sans-serif;
    --playfair-family: "Playfair Display", serif;
    --black: #000;
    --white: #fff;
    --text-color: #454545;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
}

ul {
    margin-bottom: 0;
}

li {
    list-style: none;
    color: var(--black);
}

a {
    text-decoration: none;
    color: var(--black);
}

button:focus,
input:focus {
    border: none;
    outline: none;
}

p {
    margin: 0;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: button;
    -webkit-appearance: button;
}

input,
button,
textarea,
select {
    font: inherit;
}

input[readonly] {
    background: var(--readonly-color);
}

/* for scrollbar  */
::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: gray;
}

/** button  */
.button {
    border: none;
    border-radius: 15px;
    display: flex;
    padding: 14px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 49px 0px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--nunito-family);
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.white-button {
    background-color: var(--white);
    color: var(--black);
    border-bottom: 10px;
}
