.img {
  max-height: 450px;
  max-width: 450px;
  height: auto;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  column-gap: 5px;
}

@media (max-width: 899px) {
  .img {
    max-width: 400px;
    max-height: 400px;
  }
}

.row {
  display: flex;
  flex-direction: row;
}

@media (max-width: 899px) {
  .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.img img {
  max-width: 100%;
  max-height: 100%;
  min-width: 100px;
  min-width: 100px;
  width: auto;
  height: auto;
}



.intermediar {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    height: auto; 
    background-color: blue;
    margin-top: 30px;
    margin-bottom: 20px;
}

.word {
    padding-left: 40px;
    margin: auto;
    color: white;
    font: 150 normal 2em"Papyrus";
    text-shadow: 5px 2px #222324, 2px 4px #222324, 3px 5px #222324;
  }

  .button {

    background-color: black;
    border-radius: 10px;

    padding: 0 30px;

    font-size: 15px;
    line-height: 38px;
    border: 1px solid rgba(0, 0, 0, .1);
    color: #f4f4f8;
    border-color: #7f7f80;
    transition: background-color 0.6s ease, color 0.6s ease;
     
  } 
  .button:hover {
    
    background-color: blue;
    color: rgb(249, 249, 250);
        /* Culoarea pe care o dorești când treci peste buton */
}