body {
  background: #fafafa;
}

img {
  border-radius: 50%;
}

video {
  border-radius: 15px; /* Adjust the radius as needed */
  overflow: hidden; /* Ensure the video is clipped to the border radius */
}

.container-fluid {
  background: white;
  padding: 20px;
  margin: 100px auto 0 auto;

  width: 350px;
  border: 2px solid #4caf50; /* Green border */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Optional padding to make it look nicer */
}

/* Optional: Add a shadow effect */
.container-fluid {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

#next {
  background-color: #4c507e;
  color: white;
  position: relative;

  border: 1px solid white;
}

#next:hover {
  background-color: #373a5e;
}

.topleft {
  position: absolute;
  top: 10px;
  left: 10px;
}

