*{
    margin: 0;
    padding: 0;
}
html{
    background: #edf4fa;
}
body{
    max-width: 960px;
    margin: 20px auto;
    padding: 20px 4%;
    box-shadow: 1px 1px 5px #d1d1d1;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    background: white;
    border-radius: 5px;
}
h1{
    margin: 10px 0 20px 5px;
}
p{
    float: left;
    word-break: break-all;
}
p:nth-child(2n){
    float: right;
}
a{
    text-decoration: none;
    color: black;
    padding: 5px;
    transition: all 0.3s;
}
a:hover{
    background: #b2cde0;
    color: white;
}
div{
    overflow: auto;
    padding: 5px 5px 5px 0;
    border-left: 1px solid #0f669c;
    border-right: 1px solid #0f669c;
    border-bottom: 1px solid #0f669c;
}
div:nth-child(2n){
    background: #edf4fa;
}
div:nth-child(2){
    border-top: 1px solid #0f669c;
}
div.header{
    background: #b2cde0;
    padding-left: 5px;    
}
div:last-child{
    margin-bottom: 20px;
}
#attr{
    float: none;
    margin: 25px 0 0 0;
    text-align: right;
    font-size: 0.8em;
    color: gray;
}
#attr a{
    color: gray;
}
#attr a:hover{
    color: #b2cde0;
    background: none;
}
@media screen and (max-width: 960px){
    a{
        padding: 5px 0;
    }
    p{
        width: 100%;
        margin-left: 5px;
    }
    p:nth-child(2){
        float: left;
        margin-left: 5px;
    }
}