body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  text-align: center;
  margin: 0;
  padding: 0;
}
.container {
  padding: 40px 20px;
}
.logo {
  width: 200px;
  margin-bottom: 20px;
}
.btn {
  background-color: #002f87;
  color: white;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  border-radius: 6px;
  cursor: pointer;
}
.btn:hover {
  background-color: #F0832A;
}
.feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.video-card {
  background: white;
  border: 1px solid #ddd;
  width: 80%;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.thumbnail-container {
  width: 30%;
  min-width: 200px;
}
.thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.description-container {
  width: 70%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.drag-over {
  border: 2px dashed #F0832A;
}