body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    min-width: 320px;
    min-height: 100%;
    font-family: courier, courier new, serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    /* color: #333333; */
    margin: 0 auto;
}

@media (min-width: 600px) {
    body {
        width: 600px;
        }
}



  

h1 {
    color: red;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
    line-height: 41px;
    padding: 0 10px;
    text-align: center;
    margin-bottom: 0px;
}

@media (min-width: 659px) {
    h1 {
        font-size: 24px;
        }
}

.cat {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}

.whoosh {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer; 
    filter: grayscale(1); /* Черно-белый фильтр для изображения */
    transition: 0.5s; /* Время изменения цвета изображения */

}

.whoosh:hover {
    filter: grayscale(0); /* Цветное изображение при наведении */
}
  a.push_me {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.08);
    color: #fff;
    display:block;
    width: 200px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 8px 16px;
    margin: 50px auto;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: background-color 0.1s linear;
    -moz-transition: background-color 0.1s linear;
    -o-transition: background-color 0.1s linear;
    transition: background-color 0.1s linear;
    cursor: pointer;  
        
}
a.push_me {
    background-color: #1dbdf3;
    border: 1px solid rgb( 33, 126, 74 );
}
            
a.push_me:hover {
    background-color: #008CBA;
}

.ready {
    display:block;
    width: 250px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 8px 16px;
    color: #fff;
    border-radius: 4px;
}

.text {
    position: relative;
    /* text-indent: 10px; */
    text-align: justify;
    border-radius: 4px;
    /* -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.08); */
    /* -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.08); */
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.08); */
    padding: 8px 16px;
    -webkit-transition: background-color 0.1s linear;
    -moz-transition: background-color 0.1s linear;
    -o-transition: background-color 0.1s linear;
    transition: background-color 0.1s linear;
    cursor: pointer;  
    /* border: 1px solid rgb( 33, 126, 74 ); */
    /* background-color: #ffffff; */
}

  
  .text::before {
    background: hsl(45 100% 70%);
    content: "";
    inset: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-in-out;
    z-index: -1;
  }
  
  .text:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  .fade-in {
    opacity: 0; /* начальное значение непрозрачности */
    animation: fadeIn ease-in 1; /* добавляем анимацию fadeIn */
    animation-fill-mode: forwards; /* будет видимым после завершения анимации */
    animation-duration: 0.7s; /* длительность анимации в 1 секунду */
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }