body {
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  font-style: normal;
}
.text-center {
  text-align: center;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

.max-w-full {
  max-width: 100%;
}

.container {
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("/images/background.jpg");
  background-size: cover;
  background-position: center;
  margin: -8px;
}
.container_item {
  padding: 2rem;
  max-width: 1024px;
  margin: auto;
}
.heading {
  text-align: center;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
table th {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: left;
}

table td {
  border: 1px solid #ddd;
  padding: 1rem;
}
.last_session {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.container p,
.container table td {
  font-size: 20px;
  font-weight: 700;
}

.container_item .title {
  display: flex;
  justify-content: space-around;
  padding: 0 80px;
  align-items: center;
}

.container_item .title .heading {
  font-size: 40px;
  color: #333;
}

@media only screen and (max-width: 767px) {
  .container_item .title {
    display: block;
    text-align: center;
    padding: 0;
  }
  .container p,
  .container table td {
    font-size: 14px;
  }
}

