/* Responsive video code */

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 auto; /* Center align the video */
  width: 70%; /* Set the width of the video container */
}

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

/* End of responsive video code */

/* Code block with a copy code to clipboard button */

.code-block {
  position: relative;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.copy-button {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px 10px;
  border: none;
  background-color: #ccc;
  border-radius: 3px;
  cursor: pointer;
}

/* End of code block with a copy code to clipboard button */