:root {
  --blue: #cfe6ff;
  --card: #3f3f41;
  --page: #ffffff;
}

body {
  margin: 0;
  background: #cfe6ff;
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

.frame {
  min-height: 100vh;
  padding: 20px;
  border: 6px solid var(--blue);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sheet {
  background: var(--page);
  width: min(900px, 92vw);
  border-radius: 24px;
  padding: 48px 28px 64px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .03) inset;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 26px;
}

.media {
  width: 520px;
}

.schedule-table {
  width60%;
  border-collapse: separate;
  background: var(--card);
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.schedule-table thead th {
  padding: 10px 22px;
  text-align: center;
  font-weight: 700;
}

.schedule-table em {
  font-style: italic;
  font-weight: 600;
}

.btn {
  display: block;
  width: fit-content;
  margin: 24px auto 32px;
  padding: 8px 14px;
  border: 1px solid #918f8f;
  border-radius: 6px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font: 600 14px/1.2 Poppins, system-ui, sans-serif;
}

.btn:hover {
  background: #f2f2f2;
}