
body {
    margin: 0;
    padding: 0;
    background: url('res/background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
}

.site-header {
    width: 960px;
    margin: 5px auto;
    padding-top: 30px;
    padding-left: 30px;
    text-align: left;
    font-size: 1em;
    color: white;
}

.site-header h1 a {
    text-decoration: none;
    color: white;
}

.container {
    width: 960px;
    margin: 40px auto;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
}

.post-date {
    color: gray;
    margin-top: 10px;
    margin-left: 30px;
    font-weight: 700;
}

.inner-container {
    display: flex;
}

.main-content {
    flex: 1;
    width: 600px;
    margin: 20px;
    margin-top: 10px;
    background: white;
    border-radius: 5px;
    padding: 20px;
    padding-top: 0px;
}

.title {
    margin-top: 15px;
    margin-bottom: 25px;
    color: dodgerblue;
}

.sidebar {
    width: 256px;
    margin-top: 10px;
}

.home {
    display: inline-block;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: dodgerblue;
}

.icon-row {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.icon-row a img {
    width: 32px;
    height: 32px;
    display: block;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li a {
    display: block;
    padding: 8px 0;
    color: #3a3862;
}

.excerpt-title {
    margin-top: 0px;
    margin-bottom: 10px;
}

.excerpt-title a {
    color: dodgerblue;
    text-decoration: none;
}

.post-excerpt {
    margin-bottom: 20px;
}

.post-excerpt small {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: small;
    color: gray;
}

img {
    max-width: 100%;
    height: auto;
  }
  
