
       table {
            width: 50%;
            border-collapse: collapse;
            margin: 20px auto;
            background-color: #fff;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        th,
        td {
            padding: 15px;
            border: 1px solid #ddd;
            text-align: left;
            word-wrap: break-word;
        }

        th {
            background-color: #4CAF50;
            color: white;
        }

        td {
            background-color: #f9f9f9;
        }

        tr:nth-child(even) td {
            background-color: #e9e9e9;
        }

#myBtn {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}
h1 { 
  text-align: center;
}
.container {
  text-align: center;
}

.figure-container {
  display: flex; /* Makes the children flex items arranged in a row */
  flex-direction row;
  justify-content: space-around; /* Optional: Distributes space evenly between and around items */
  align-items: flex-start; /* Optional: Aligns items at the start of the cross axis (top) */
  flex-wrap: wrap; /* Optional: Ensures items stay on one line (default behavior) */
}
figure {
  /* Optional: Add some styling to the figure elements themselves */
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
}
.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}