* {
    font-family: "Almarai";
    font-size: 17px;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
    --dc: #bd720a;
    --sc: #f2f2f2;
    transition: color, background-color 150ms linear;
}

@keyframes intro {
    from {
        transform: scale(0.99);
    }

    to {
        transform: scale(1);
    }
}

@keyframes inScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Bar */
.bar {
    width: 100%;
    height: 56px;
    box-shadow: 0 0 4px 0px #0000007a;
    display: flex;
    background-color: #fff;
    z-index: 1;
}

.logo {
    background-image: url(../assets/text-title.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 250px;
    height: 30px;
    margin: 13px 5px 13px 15px;
    transition: 300ms;
}

.barBtn {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin: auto 15px auto auto;
    cursor: pointer;
}

#barMenu {
    background-image: url(../assets/menu.svg);
}

/* End of Bar */
/* Media Query */
@media (max-width: 330px) {
    .logo {
        width: 200px;
        height: 30px;
    }

    #barMenu {
        width: 20px;
        height: 20px;
    }
}
