@font-face {
    font-family: 'Inter-Bold';
    src: url('/assets/fonts/Inter-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter-Light';
    src: url('/assets/fonts/Inter-Light.ttf') format('truetype');
}

body {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 77px;
    height: 100vh;
    box-sizing: border-box;
}

.title span {
    text-align: center;
    display: block;
    color: #18191C;
    font-family: 'Inter-Bold', serif;
    font-size: 33px;
    font-weight: 700;
    line-height: 45px;
}

.title img {
    position: relative;
    top: 6px;
    margin-left: 10px;
}

.stores-large {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stores-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.link {
    text-align: center;
}

.link a {
    color: #18191C;
    font-family: 'Inter-Light', serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 37px;
    text-decoration-line: underline;
}

/* Маленькие устройства (телефоны, менее 600px) */
@media (max-width: 599px) {
    .content {
        margin: 0 37px;
    }

    .stores-large {
        display: none;
    }

    .stores-mobile {
        display: flex;
    }

    .title span {
        font-size: 24px;
        line-height: 25px;
    }

    .link a {
        font-size: 16px;
    }
}