@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;

}

:root {
    --white-color: #fff;
    --black-color: #1d1d1d;
    --main-color: hsl(25deg 35% 30%);

}

h1,
h1 span,
h2,
h2 span,
h3,
h3 span {
    font-family: "Cinzel", serif;
}

ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0 !important;
}

.global_btn {
    background-color: hsl(25deg 35% 30%);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    border: none;
    outline: none;
    transition: .3s ease all;
}

.global_btn:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    transition: .3s ease all;
    padding: 10px 22px;
}

@media(max-width:768px){
    .global_btn{
        padding: 5px 10px;
        font-size: 16px;
    }
}