body {
    margin: 0;
    padding: 0;
    background-color: white; /* 背景色を白に設定 */
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center; /* コンテンツを垂直方向の中央に配置 */
    min-height: 100vh; /* 最小の高さをビューポートの高さに設定 */
}

.content {
    text-align: center;
}

header img {
    width: 15%; /* 元の50%の30% */
    max-width: 90px; /* 元の300pxの30% */
    height: auto;
    margin-bottom: 20px; /* ロゴとSNSアイコン間のマージン */
}

.social-links {
    display: inline-block;
}

.social-links a {
    margin: 0 5px;
}

.social-links img {
    width: 12px; /* SNSロゴのサイズを設定 */
    height: auto;
}

.social-links a:last-child img {
    width: 13.2px; /* メールアイコンのサイズを10%大きく設定 */
}

@media (max-width: 768px) {
    header img {
        width: 24%; /* 元の80%の30% */
    }

    .social-links img {
        width: 10px; /* 小さい画面でのSNSロゴのサイズ設定 */
    }

    .social-links a:last-child img {
        width: 11px; /* 小さい画面でのメールアイコンのサイズを10%大きく設定 */
    }
}

