@charset "UTF-8";
html{
    font-size: 100%;
}
body{
    border: solid;
    border-width: 2px;
    width: 950px;
    height: auto;
    font-size: 1rem;
    color: silver;
    margin: auto;/*これでautpにすると/中央になる*/    
    background-color: black;
font-family: "DotGothic16", sans-serif;
}
a{
    text-decoration: none;/*aの下線消し*/
    color: white;
}
a:hover{
    color: rgb(84, 0, 140);
}

p{
    padding: 5px;
}
li{
    list-style: none;
}

/*ヘッダー系*/
header{
    width: 800px;
    text-align: center;
    background-image: url(images/jan_blog_header1.png);
    background-size: cover;
    background-repeat: no-repeat;
    border: solid silver;
    border-width:0px 0px 2px 0px;
    padding: 50px;
}
.header-logo{
    font-size: 80px;
    color: red; 
    
}


/*ナビ類*/
.side-bar-nav{
font-size: 16px;
border: solid;
border-width: 0px 2px 0px 0px;
width: 150px;
height: auto;
}



/*記事書き汎用*/



.title-huti{
    border: solid;
    border-width: 4px 4px 4px 4px;
    margin: 40px 70px 40px 70px;
}

.title{
    font-size: 40px;
    text-align: center;
    padding: 15px 0px 15px 0px
    
}

.hiduke{
    text-align: right;
    margin: 0px 50px 10px 0px
}

.honbunyohaku{
    margin: 50px 70px 50px 70px;
}

/*フッター*/
footer{
    text-align: center;
    border: solid;
    border-width: 2px 0px 0px 0px;
    padding: 30px;
}

/*配置関係*/
.container{
    display: flex;
}
