body {
    background-color: #f5f5f5;
    font-family: sans-serif;
    font-weight: normal;
    font-size: medium;
    color: #555b66;
}
.menu {
    float: left;
    position: relative;
    width: 100%;
    text-align: center;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-button {
    padding: 16px;
    font-size: x-large;
    background: #f5f5f5;
    border-style: none;
    color: #555b66;
}
.dropdown-button a {
    text-decoration: none;
    color: #555b66;
}
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    z-index: 1;
}
.dropdown-content a {
    color: #555b66;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #ddd;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropdown-button {
    background-color: #f5f5f5;
}
.logo-container {
    float: left;
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
}
.content-container {
    float: left;
    width: 100%;
    margin-top: 32px;
}
.post {
    margin-bottom: 32px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    margin-left: 16px;
    margin-right: 16px;
    padding: 8px;
}
.post-title {
    text-align: center;
    width: 100%;
}
.post-image-list {
    text-align: center;
}
.post-image {
    display: inline-block;
    margin-bottom: 16px;
}
.post-image img {
    border-radius: 32px;
    width: 100%;
    height: auto;
}
.post-image .image-name {
    text-align: center;
}
.footer-container {
    float: left;
    width: 100%;
    margin-top: 32px;
}
.copyrights {
    clear: both;
    text-align: center;
    font-size: medium;
    margin-top: 16px;
    margin-bottom: 16px;
}
.copyrights a {
    color: #333;
    text-decoration: none;
}