* {
    font-family: "Inter", sans-serif;
}

@font-face {
    font-family: 'RocknRollOne';
    src: url('/static/fonts/RocknRollOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    /*height: 100%;*/
    margin: 0;
}

.mobile-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 800px;
    background: #000;
    margin: 0 auto;
    min-height: 100vh;
}
@media (max-width: 768px) {
    body {
        overflow-y: hidden; /* Убираем вертикальную прокрутку на мобильных */
    }

    /* Опционально: можно убрать прокрутку и на самом контейнере */
    .mobile-block {
        overflow-y: hidden;
    }

    .big-container__numbers {
        overflow-y: hidden; /* Убираем прокрутку внутри контейнера */
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 800px;
    height: 75px;
    position: fixed;
    top: 42px;
    z-index: 1000;
    border: 2px solid #24FD61;
    border-left: 0;
    border-right: 0;
    color: #24FD61;
    margin-bottom: 50px;
    background: #000;
}

.header__point {
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
}

.header__left-bar,
.header__right-bar {
    display: flex;
    align-items: center;
    width: 40%;
    height: 100%;
}

.icon_white {
    margin: 0 0 0 9px;
}

.icon_black, .icon_green {
    margin: 0 0 0 30px;
}

.header__center {
    justify-content: center;
}

.header__text {
    margin: 0px 0 0 27px;
    font-size: 16px;
    line-height: 200%;
    text-transform: uppercase;
    font-family: 'RocknRollOne', sans-serif;
}

.big-number {
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
    background-color: #112211;
    width: 135px;
    height: 39px;
    display: flex;
    justify-content: center; /* Горизонтальное выравнивание */
    align-items: center; /* Вертикальное выравнивание */
    border-radius: 6px;
    margin: 0 0 0 22px;
}

.header__logo {
    margin-top: 25px;
}

.header__right-bar a {
    margin-right: 8%;
}

.header__right-bar img {
    display: block;
}

.header__right-bar p.count {
    font-family: "Quicksand", sans-serif;
    margin: 0 0 0 5px;
    font-size: 20px;
}

.big-container__numbers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 160px 16px 0 22px;
    height: calc(1640px - 17px);
    min-height: 100vh;
    overflow-y: auto;
    align-content: start;
    background-color: #112211;
}

.big-container__numbers .btn {
    margin: 0 0 5px 0;
}

.big-container__numbers::-webkit-scrollbar {
    display: none;
}

.box-number {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 135px; */
    border-radius: 0.5rem;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0);
    border: none;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 2rem 2rem;
    text-align: center;
    font-size: 4rem;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 0.5rem;
    cursor: pointer;
    background: #fff;
    width: 135px;
    height: 135px;
}

.btn:focus {
    outline: none;
}

.green {
    background: #24FD61;
}

.gray {
    background: #4a4a4a;
}

.black {
    background: #000;
    border: 2px solid #24FD61;
    color: #24FD61;
}
