
#header {
    width: 100%;
    margin: auto;
    font-family: verdana, arial, helvetica, sans-serif;
}

#logo {
    width: 450px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 40px;
}

.title {
    background: #000000;
    color: #ffffff;
    padding: 18px 20px;
}

.title a {
    color: white;
}
.title a:hover {
    color: white;
    text-decoration: none;
}

article {
    width: 900px;
    margin: auto;
    font-family: verdana, arial, helvetica, sans-serif;
    margin-bottom: 40px;
    font-size: 15px;
}

article p{
    line-height: 140%;
}

article img {
    max-width: 800px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

article br {
    height: 0;
    line-height: 0;
}

article .spoiler_text {
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
    border-left: 1px dashed #514f4d;
    font-size: 90%;
}

article code {
    color: #3a3937;
    font-size: 110%;
}

article a {
    color: #282625;
    text-decoration: none;
}
article a:hover {
    text-decoration: underline;
    color: #030303;
}

article a.comments{
    display: block;
    background: black;
    color: white;
    text-decoration: none;
    margin: 25px auto;
    text-align: center;
    padding: 18px;
    font-size: 25px;
}

article h1 {
    font-size: 25px;
    color: #151414;
    padding-bottom: 10px;
    display: block;
    border-bottom: 1px solid black;
    margin-bottom: 30px;
    font-weight: normal;
}

article h2 {
    font-size: 25px;
    color: #000000;
    padding-bottom: 5px;
    border-bottom: 1px solid #c6c6c6;
}

article h3 {
    font-size: 25px;
    font-weight: normal;
    color: #414141;
    margin-bottom: 15px;
}

article h4 {
    margin-bottom: 11px;
}

article ul li{
    margin-top: 15px;
}

.content {
    margin-top: 30px;
    padding-top: 30px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 965px) {
    #logo {
        width: 80%;
        max-width: 350px;
        padding-top: 30px;
        padding-bottom: 25px;
    }
    
    article {
        width: 90%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        font-size: 16px;
    }
    
    article img {
        max-width: 100%;
    }
    
    article h1 {
        font-size: 22px;
    }
    
    article h2 {
        font-size: 22px;
    }
    
    article h3 {
        font-size: 20px;
    }
    
    article ul {
        padding-left: 25px;
    }
}

@media screen and (max-width: 480px) {
    #logo {
        width: 90%;
        max-width: 280px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    article {
        width: 100%;
        padding: 0 15px;
        font-size: 15px;
    }
    
    article h1 {
        font-size: 20px;
    }
    
    article h2 {
        font-size: 20px;
    }
    
    article h3 {
        font-size: 18px;
    }
    
    article a.comments {
        font-size: 20px;
        padding: 15px;
    }
    
    article ul {
        padding-left: 20px;
    }
}