@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  min-height: 100vh;
  background: linear-gradient(#c7e6e9, #abdbe7);
  padding: clamp(20px, 5vw, 100px) 20px;
  font-weight: 500;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px clamp(20px, 5vw, 80px);
  background: #fff;
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
main .logo {
  text-align: center;
  margin-bottom: 40px;
}
main .logo img {
  max-width: 200px;
  height: auto;
}
main .about {
  margin-bottom: 40px;
}
main .about p {
  font-size: 15px;
  margin-bottom: 1em;
  line-height: 2;
}
main table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  overflow: hidden;
}
main table tr {
  border-bottom: 1px solid #213453;
}
main table tr:last-child {
  border-bottom: none;
}
main table th,
main table td {
  padding: 1em;
  border: 1px solid #8bb9c7;
  vertical-align: top;
  text-align: left;
  line-height: 2;
}
main table th {
  max-width: 30%;
  width: 120px;
  background: #ddf8ff;
}/*# sourceMappingURL=style.css.map */