:root {
    --clr-dark: #020617;
    --clr-light: #f1f5f9;
    --clr-primary: #ffce99;
    --clr-green: #047857;
    --clr-peach: #ffedd5;
    --clr-orange: #ca8a04;
    --card-color: rgb(25, 25, 25);
    --clr-thebest: linear-gradient(
        45deg,
        transparent 5%,
        rgb(255, 215, 137) 50%,
        transparent 99%
    );
    /*	orange rgb(202, 138, 4) */

    /* sizes */
    --size-xxs: 0.5rem;
    --size-xs: 0.75rem;
    --size-sm: 0.85rem;
    --size-base: 1rem;
    --size-lg: 1.125rem;
    --size-xl: 1.25rem;
    --size-2xl: 1.5rem;
    --size-3xl: 1.875rem;
    --size-4xl: 2.25rem;
    --size-5xl: 3rem;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(5vh);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(25px);
    }

    to {
        transform: translateY(0);
    }
}

.slideUp {
    animation: slideUp 1s ease-in;
}

@media (prefers-reduced-motion: no-preference) {
    .card {
        view-timeline-name: --item-timeline;
        animation: slideFadeIn both;
        animation-timeline: --item-timeline;
        animation-range: contain 0% contain 50%;
    }
}

/* animation: name duration timing-function delay iteration-count direction fill-mode; 
    animation: slideInLeft 1s ease-in 1s 1 normal both;
*/

* {
    margin: 0;
    line-height: calc(1rem + 0.5rem);
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 2rem;
}

body {
    font-family: 'General Sans', sans-serif;
    background-color: var(--clr-primary);
    color: var(--clr-dark);
    /* background-image: url("../pics/gold-gradient-background.png"); */

}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    user-select: none;
}


button {
    display: inline-block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

strong {
    color: var(--clr-orange);
}

a {
    color: var(--clr-dark);
}

b {
    font-weight: 600;
}


/* Scrollbar */
body::-webkit-scrollbar {
    width: 6px;
  }
   
  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  }
   
  body::-webkit-scrollbar-thumb {
    background-color: var(--clr-orange);
    outline: 1px solid var(--clr-orange);
  }