:root {
    --background-color: #f5f2eb;
    --primary-color: #fdb500;
    --secondary-color: #f87e2c;
    --text-color: #3b3b3b;
    --gray-text-color: rgba(0, 0, 0, 0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--background-color);
    background-image: url("/assets/img/body.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: normal;
    color: var(--text-color);
}

.web {
    @media (max-width: 767px) {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .text-m-center {
        text-align: center;
    }

    .text-m-left {
        text-align: left;
    }

    .text-m-right {
        text-align: right;
    }

    .center-m {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .right-m {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        align-content: flex-start;
    }

    .left-m {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        align-content: flex-start;
    }
}
