.short {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    border-bottom-style: solid;
    border-color: var(--textGold);
    border-width: 0.1rem;
}
.game-logo-img {
    display: block;
    max-width: 95%;
    margin: 0 auto;
    padding: 0;
}
.short-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 0 0.5rem 1rem 0.5rem;
}
/* изображение кнопки */
.short-but-img {
    width: auto;
    max-width: 100%;
    height: 3rem;
    margin: 0 0.5rem 0 0.5rem;
    padding: 0;
}
.play-buts, 
.rules-buts {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    text-decoration: none; /* Для <a> */
}
.rules-buts {
    /* Убираем все стандартные стили кнопки */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
      /* Убираем эффекты выделения текста */
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
      /* Курсор указывает на интерактивность */
    cursor: pointer;
}

.game-rules h3 {
    text-align: center;
}
.game-rules p {
    text-indent: 0; /* убираем абзацный отступ первой строки */
}
.game-rules {
    width: 100%;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 2s ease-in-out;
}
.game-rules.active {
    max-height: 300rem; /* достаточно для длинных правил */
    opacity: 1;
    visibility: visible;
  }

.help-img {
    max-width: 70%;
    display: block;
    margin: 0 auto;
}

/* Это для мелкого изображения, которое обтекает текст */
.left-float-art {
  float: left;
  height: 2.5rem;
  max-width: 50%;
  margin-right: 0.3rem;
  margin-bottom: 0.05rem;
  width: auto;
}

/* ---------- P C   &    T A B L E T S ---------- */
/* Unless you have a legitimate reason to restrict the style sheets based on the resolution */
/* and not the size of the viewport, then just use min-width/max-width */
/*  and avoid min-device-width/max-device-width */
@media only screen and (min-width: 480px) {

}