:root {
    --bg-secondary: rgb(109, 19, 19);
    --cl-accent: rgb(241, 8, 164);
}


*,
*::before,
*::after {

    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: auto;

}

html {
    font-size: 100%;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 10rem;
}

body {
    color: #fff;
    font-family: Agbalumo;
    background: #000;
    margin: 0;
}


h1, h2, h3 {
    margin: 0;
    line-height: 1;
}

p {
   font-family: Tahoma;
   font-size: 1.25rem;
}

h2 {
   font-size: clamp(1.75rem, 8vw, 2.5rem);
}

h3 {
    font-size: clamp(1.75rem, 10vw, 3.5rem);
 }

b,
strong {
    font-weight: bolder;
}

a {
    color: inherit;
    background-color: transparent;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
    object-fit: cover;
}

.container {
    padding: 0 1.25rem;
    max-width: 1170px;
    margin: 0 auto;
}

.shadow {
    box-shadow: 
    rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
    rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.rounded {
    border-radius: 0.5rem;
}

.menu {
    margin: 0;
    padding-left: 0;
}

.menu li {
    list-style: none;
    
}

.menu a{
    font-family: 'Kdam Thmor Pro', sans-serif;
    text-decoration: none;
}