@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&family=Noto+Sans+JP:wght@100..900&display=swap');

header {
    color: #2e2e2e;
    font-family: 'Noto Sans JP', Consolas, 'Courier New', monospace;
    text-align: center;
    font-size: 32px;
    margin: auto;
}

body {
  background-color: #e6f5f3;
  color: #2e2e2e;
  font-family: 'Noto Sans JP', Consolas, 'Courier New', monospace;
}

main {
  font-family: 'Noto Sans JP', Consolas, 'Courier New', monospace;
  font-size: 16px;
  text-align: left;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  color: #2e2e2e;
  margin: 35px;
  padding: 20px 20px;
}



/* リンク設定 */
a, a:visited {
  color: #0044cc;
  text-decoration: underline;
}

a:hover, a:active {
  color: #63cfcf; /* ホバー時にシアンに */
  text-decoration: underline;
}



footer{
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

a.x-share-btn {
  display: inline-block;
  background-color: #1da1f2;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}
a.x-share-btn:hover {
  background-color: #0d95e8;
}


@media screen and (max-width: 768px) {
  header {
    font-size: 24px;
    margin: 10px;
  }

  body {
    padding: 10px;
  }

  footer {
    text-align: center;
    font-size: 10px;
  }
}