:root {
    /********* Color  *********/
    --primary-color: #a1242c;
    --white-color: #fff;
    --black-color: #000;
    --black-transparent: rgba(0, 0, 0, 0.8);

    /********* Border Radius  *********/
    --border-radius-main: 8px;
    --border-radius-mini: 4px;

    /********* FontSize  *********/
}

/********* GLOBAL  *********/
* {
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
    line-height: 1.6rem;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}
/* 
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    overscroll-behavior: contain;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
} */

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/********* Scrollbar  *********/
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-thumb {
    height: 56px;
    -webkit-border-radius: var(--border-radius-main);
    -moz-border-radius: var(--border-radius-main);
    border-radius: var(--border-radius-main);
    border: 2px solid transparent;
    background-clip: content-box;
    background-color: #aaa;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #4e4e4e;
}

/* ANIMATION */
@keyframes zoomInOut {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes colorChange {
    0% {
        background-color: var(--primary-color);
    }
    100% {
        background-color: var(--black-transparent);
    }
}