
.tutorials {
  max-width: 80rem;
  margin: 20px auto;
  padding: 10px;
  
}

.row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1px;
}

.tutorial {
  margin: 10px;
  width: 200%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.tutorial h2 {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
  padding: 10px;
  background-color: #3b4a5d;
  border-radius: 10px 10px 0 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Styles */

@media (max-width: 900px) {

  .row {
    flex-wrap: wrap;
  }
 .tutorial {
    width: 100%;
  }
}

@media (max-width: 500px) {

  .tutorial h2 {
    font-size: 15px;
  }

 .video-container {
    padding-bottom: 100%;
  }
}

@media (max-width: 340px) {

  .tutorial h2 {
    font-size: 12px;
  }

 .video-container {
    padding-bottom: 120%;
  }
}