ボーダーをボディ全体を囲む
ボーダーを使ったデザイン演出を紹介します。

<style>
html:before {
content: "";
position: fixed;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
border:10px solid #B40003;//ボーダーの太さ・色
}
</style>
	ボーダーを使ったデザイン演出を紹介します。

<style>
html:before {
content: "";
position: fixed;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
border:10px solid #B40003;//ボーダーの太さ・色
}
</style>