.container {
  position: relative;
  margin: 0 auto;
  width: 50%;
  text-align: center;
  padding: 10px 10px 10px 10px;
}
.titlu {
  padding: 10px 10px 10px 10px;
  color: #f3403b;
}

.lista {
  display: inline-block;
  margin: 5px 5px 5px 5px;
  padding: 10px 10px 5px 10px;
  border: 3px solid #f3403b;
}

.lista:hover {
  background-color: #f3403b;
  -webkit-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow:    7px 7px 14px 0px rgba(50, 50, 50, 0.75);
  box-shadow:         7px 7px 14px 0px rgba(50, 50, 50, 0.75);
}
.example-image-link {
  width: 100px;
  margin: 5px;
}

.example-video-link {
  max-width: 1280px;
  margin: 5px;
}

.nume-poza {
  align-items: baseline;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 2800px) {
    .container {
        width: 1200px;
    }
    .example-video-link {
        width: 1280px;
    }
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .container {
    width: 800px;
  }
  .example-video-link {
      width: 800px;
  }}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .container {
    width: 500px;
  }
  .example-video-link {
      width: 480px;
  }
}

/* On screens that are 400px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .container {
    width: 300px;
  }
  .example-video-link {
      width: 360px;
  }
}
