@import url('https://fonts.googleapis.com/css2?family=Lato:ital@1&family=Noto+Sans+JP:wght@100&family=Roboto:wght@300&display=swap');

:root {
  --primary-color: #38bdf8 ;
}

body {
  font-family: 'Lato', sans-serif;
  min-width: 100vw;
}

/* Container */
.container {
  margin: 4rem auto 7rem;
  text-align: center;
}

.heading {
  color: var(--primary-color);
}

.description {
  font-size: larger;
  margin: 1rem;
  padding: 1rem;
}

.input-label {
  display: block;
  font-size: large;
  font-weight: 600;
}

.input {
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  outline: #fff;
  padding: 0.6rem 1rem;
  margin: 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 0.5rem;
  width: 100%;
  max-width: 258px;
}

#check-button {
  background: var(--primary-color);
  font-family: 'Lato', sans-serif;
  border: none;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  font-size: large;
  cursor: pointer;
  outline: #ffb;
  margin: auto;
  display: block;
}

#next-button {
  background: var(--primary-color);
  font-family: 'Lato', sans-serif;
  border: none;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  font-size: large;
  cursor: pointer;
  outline: #ffb;
  margin: auto;
  display: block;
}

#error-message {
  display: block;
  font-size: larger;
  margin: 1rem 0 0;
}

/* Table */
.change-table {
  width: 50%;
  text-align: justify;
  border-collapse: collapse;
  margin: auto;
}

.change-table caption {
  margin: 1rem auto;
  font-size: x-large;
  font-weight: 500;
}

th,
td {
  border: 2px solid var(--primary-color);
  width: 0%;
  border-collapse: collapse;
  padding: 0.4rem;
}