    * {
      box-sizing: border-box;
    }

    .menu {
      float: left;
      width: 20%;
      text-align: center;
    }

    .menu a {
      background-color: #e0e8e4;
      padding: 8px;
      margin-top: 7px;
      display: block;
      width: 100%;
      color: black;
      border-radius: 8px;
    }

    .main {
      float: left;
      width: 60%;
      padding: 0 20px;
      border-radius: 8px;
    }

    .right {
      background-color: #e0e8e4;
      float: left;
      width: 20%;
      padding: 6px;
      margin-top: 8px;
      text-align: center;
      border-radius: 8px;
    }

    @media only screen and (max-width: 620px) {

      /* Для мобильных телефонов: */
      .menu,
      .main,
      .right {
        width: 100%;
      }
    }

    .crop-container {
      width: 100%;
      height: auto;
      overflow: hidden;
    }

    .crop-container img {
      margin: 1%;
      width: 100%;
      /* Высота автоматически подстроится, сохраняя пропорции */
    }

    .image-container {
      position: relative;
      display: inline-block;
      width: 100%;
      max-width: 6in;
      overflow: hidden;
      text-align: center;
      height: auto;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
      text-align: center;
    }

    .text-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-52%, -100%);
      width: 100%;
      padding: 20px;
      text-align: right;
      color: #323232;
      font-size: 36px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    #myBtn {
      display: none;
      /* Скрыто по умолчанию */
      position: fixed;
      /* Фиксированное / липкое положение */
      bottom: 20px;
      /* Поместите кнопку в нижней части страницы */
      right: 30px;
      /* Разместить кнопку 30 пикселей от правого */
      z-index: 99;
      /* Убедитесь, что он не перекрывается */
      border: none;
      /* Удалить границы */
      outline: none;
      /* Удалить контур */
      background-color: gray;
      /* Установка цвета фона */
      color: white;
      /* Цвет текста */
      cursor: pointer;
      /* Добавить указатель мыши при наведении */
      padding: 15px;
      /* Немного отступов */
      border-radius: 10px;
      /* Округленные углы */
      font-size: 18px;
      /* Увеличить размер шрифта  */
    }

    #myBtn:hover {
      background-color: #555;
      /* Добавить темно-серый фон при наведении курсора */
    }