﻿header {
    height: 40px;
    border-bottom: 1px solid rgba(128, 128, 128,0.5);
}
footer {
    height: 20px;
    text-align: right;
    border-top: 1px solid rgba(128, 128, 128,0.5);
    font-size: 11px;
}

.contents {
    width: 640px;
    margin: auto;
}

/*
    以下を編集する

    ■ヘッダー、フッターの背景色
    ・グラデーションで表現
    下記は「rgb(232, 52, 44)」が上端、「rgb(255, 255, 255)」が下端
    background: linear-gradient(to bottom,rgb(232, 52, 44), rgb(255, 255, 255));
    
    ・単色で表現
    background: rgb(232, 52, 44);

    ■ヘッダー、フッターの文字色
    下記は文字色,黒
    color: rgb(0, 0, 0);
*/

header, footer {
    background: linear-gradient(to bottom,rgb(198, 217, 241), rgb(255, 255, 255));
    color: rgb(0, 0, 0);
}

/*ヘッダイメージサイズ*/
header img {
    height: 40px;
}
