body {
  font-family: "Lato", sans-serif;
}

.sidebar {
  height: 120%;
  width: 250px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #454141;
  overflow-x: hidden;
  padding-top: 16px;
}

.sidebar a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 26px;
  color: #818181;
  display: block;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.main {
  margin-left: 250px; /* Same as the width of the sidenav */
  padding: 0px 10px;
}

@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

.image-column {
  display: inline-block;
  width: 20%;
  margin-right: 10px; /* adjust the margin as needed */
}

.text-column {
  display: inline-block;
  width: 70%; /* adjust the width as needed */
}
/* Basic styling */
body {
  font-family: Arial, sans-serif;
}

#container {
  text-align: center;
  margin-top: 50px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Touch interactions */
#touchButton {
  border: none;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
  transition: transform 0.2s ease-in-out;
}

#touchButton:active {
  transform: scale(0.9);
}

#container {
  text-align: center;
  margin-top: 50px;
}

video {
  width: 100%; /* Full width of its container */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Optional: rounded corners */
  margin-bottom: 20px; /* Spacing between videos */
}