*{
    box-sizing: inherit;
}

html{
    font-size: 62.5%; /*tương đương 1rem = 10px*/
    line-height: 1.6rem;
    font-family: 'Montserrat', sans-serif;;
    box-sizing: border-box;
}

a{
    transition: color 400ms, background-color 400ms;
    outline: 0;
}

:root{
    --white-color: #fff;
    --text-color: #4a4a4a;
    --primary-color: #00ccad;
    --purple-color: #7f6ffc;
    --header-height: 80px;
}

@keyframes fadeUp{
    from{
        transform: translateY(15%);
        opacity: 0;
    }
    to{
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes fadeIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* Border bottom wrap */
.border-bottom__wrap{
    display: flex;
    justify-content: center;
}

.border-bottom__wrap-img{
    margin: 5px 0 15px 0;
    height: 3px;
    width: 120px;
    background: url(../img/divider.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}