/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #228b22;
  color: #000000;
  font-family: 'Hachi Maru Pop',sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

h1 {
  color: #ffff00;
  text-align: center;
  font-size: 45px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.box {
  border: 2px solid #ffff00;
  padding: 15px;
  border-radius: 15px;
  background-color: transparent;
  width: fit-content;
  margin: 20px auto;
  }

.rainbow-text {
  background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.date {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 3px;
}
hr {
  border: none;
  border-top: 3px dotted gold;
  width: 100%;
  margin: 30px 0;
}
p {
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.3;
}
.box a {
  font-size: 30px; /* 好きな大きさに調整してね */
  text-decoration: none;
}

.counter-container {
  text-align: center;  /* 中央揃え */
  font-size: 28px;
  font-weight: bold;
  font-family: 'Hachi Maru Pop', sans-serif;

  /* 文字を虹色に */
  background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #e00003;
}














