* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  display: flex;
  justify-content: center;
}

h1 {
  font-size: 32px;
  font-weight: normal;
}

h2 {
  font-size: 24px;
  font-weight: normal;
}

.container {
  min-width: 700px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 10px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  background-color: #18ff46;
  font-size: 14px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #ccff66;
  padding-bottom: 12px;
}

.top,.school,.school-general,.school-kids,.school-adult,.biography {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

main table {
  width: 480px;
  border: 1px solid #444;
}

main table tr {
  display: flex;
  gap: 2px;
}

main table td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 4px;
  background-color: #ccffff;
  border: 1px solid #000;
}

.course-name {
  min-width: 30%;
  max-width: 35%;
}

.course-fee {
  min-width: 33%;
  max-width: 33%;
}

.course-name p:first-child {
  color: blue;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

footer .contact {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 12px;
  font-size: x-small;
  padding: 8px;
  padding-top: 4px;
}

footer .footer-footer {
  width: 100%;
  background-color: #18ff46;
  padding: 4px;
  text-align: center;
  font-size: 14px;
}


.caption {
  font-size: small;
}

.text-with-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight {
  color: blue;
}

.warning {
  color: red;
  font-size: small;
}

.message {
  text-align: center;
}

@media screen and (max-width: 700px) {
  .container {
    min-width: 100%;
    max-width: 100%;
    padding-top: 2px;
    padding-bottom: 15px;
    padding-right: 4px;
    padding-left: 4px;
  }

  main table {
    width: 95%;
    border: 1px solid #444;
  }
}