/* 全体の設定 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* ヘッダー */
.header {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    text-align: center;
}

.title {
    margin: 0;
    font-size: 2em;
}

.navbar {
    margin-top: 10px;
}

.navbar ul {
    list-style: none;
    padding: 0;
}

.navbar ul li {
    display: inline;
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* メインコンテンツ */
main {
    padding: 30px;
    text-align: center;
}

/* 開発者紹介セクション */
.developer-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.developer-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.github-avatar {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    font-size: 1.8em;
    margin: 10px 0;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 10px 0;
    max-width: 700px;
}

.github-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #24292f;
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.github-button:hover {
    background-color: #0366d6;
    transform: translateY(-2px); /* ボタンを浮かせるような効果 */
}

/* フッター */
.footer {
    display: flex; /* フレックスボックスを使用 */
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center; /* 垂直方向の中央揃え */
    height: 100px; /* フッターの高さを指定 */
    background-color: #4CAF50;
    color: white;
    text-align: center; /* テキストを中央揃え */
}

.footer p {
    margin: 0; /* 不要な余白を削除 */
    font-size: 1em;
}

