#hobbies{margin-top: 66px;width: 100%;display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;}

#hobbies_info {
  padding: 40px 32px;
  flex-direction: column;
  align-items: flex-start;
  transition: .5s;
  color: white;
}

.bulletsize li {
  font-size: 1.8em;
}

li{
  color: white;
  text-align: start;
}
#gap{
  margin-top: 20px;
}

.hobbies_row {
  margin-top: -30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  /* Align items to the top of the row */
  width: 100%;
}

* {
  box-sizing: border-box;
}

/* Create three equal hobbies_columns that floats next to each other */
.hobbies_column {
  float: left;
  width: 33.33%;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hobbies_column video {
  width: auto;
  height: 350px;
  border: 2px double white;
  object-fit: contain;
}

.hobbies_column p {
  /* Ensure the text doesn't wrap to the next line */
  overflow: hidden;
  /* Hide overflow text if it exceeds the container */
  text-overflow: ellipsis;
  /* Optional: Show ellipsis for overflowed text */
  margin-top: 8px
  /* Space between video and text */
}