@charset "utf-8";

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: khaki;
}

h1 {
    text-align: center;
}
h2 {
    text-align: center;
    margin-bottom: 0px;
}

p {
    margin-top: 3px;
    margin-bottom: 3px;
    text-align: center;
}



.small {
    text-align: center;
    font-size: 12px;
}

.container {
    max-width: 1200px;
    min-width: 375px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.link-container {
  white-space: nowrap; /* 改行させない */
  text-align: center;      /* 中央揃え */
}

.link-container a {
  display: inline-block;
  margin-right: 15px;
}

/* 最後のリンクの右の余白を消す場合（任意） */
.link-container a:last-child {
  margin-right: 0;
}