:root {
    --color-yell: #EAB738;
    --color-orange: #F8671C;
    --color-red: #DF0915;
    --color-blue: #254083;
    --color-blue2: #223150;
    --color-white: #FAF9F6;
    --radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inter, sans-serif;

}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: var(--color-white);
}

body::-webkit-scrollbar-thumb {
    background: var(--color-orange);
}

p,
span,
a {
    font-size: 16px;
    color: rgb(23, 23, 23);
    font-weight: 400;
    text-decoration: none;
}

.limitador {
    max-width: 1280px;
    width: 100%;
    height: fit-content;
}

/* *TITLE */
.star {
    background-image: url(../img/itens/title-star.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 40px;
    width: 50px;
    animation: rotateStar 2s linear infinite;
}

@keyframes rotateStar {
    0% {
        transform: rotate(0deg);
        width: 40px;
    }
    50% {
        transform: rotate(180deg);
        width: 45px;
    }
    100% {
        transform: rotate(360deg);
        width: 40px;
    }
  }

.title {
    padding-left: 9px;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 800;
}

.darken {
    mix-blend-mode: darken;
}

.white{
    color: var(--color-white);
}