* {
    box-sizing: border-box;
    font-family: 'Sarabun', sans-serif;
}

body {
    background: #dcdcdc;
}
aside{
    width: 190px;
    height: 100%;
    padding: 100px 20px;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

aside a{
    text-decoration: none;
    color: #827676;
    font-weight: 400;
}
aside a:hover{
    color: #413f3f;
}

aside a.link{
    padding-left: 8%;
}

.container{
    background: #fdfdf7;
    min-width: 80%;
    margin-left: 190px;
/*    padding: 0px 10px 0px ;*/
    border-radius: 5px;
    box-shadow: -3px 3px 9px -2px #00000087;
}


.header{
    padding: 10px 20px 10px 10px;
    color: #444444;
    font-size: 16px;
}

.albums {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 10px;
    text-decoration: none;
    align-content: flex-start;
    flex-shrink: 0;
    justify-content: center;
}
.albumlink {
    max-width: 80%;
    flex: 1 0 content;
/*    max-height: 600px;*/
    margin: 5px;
    box-sizing: border-box;
    border: 1px solid #3a3a3ac2;
    border-radius: 10px;
    display: flex;
/*    flex-shrink: 1;*/
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}

.albumlink:hover {
    margin: 5px;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    box-shadow: 0px 0px 11px 1px #3a3a3a4d
}

.albumlink a{
    text-decoration: none;
    color: #444444;
}

.albumlink img{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    text-decoration: none;
    max-height: 100%;
}

.albumlink p{
    text-decoration: none;
    text-align: center;
    margin 0px;
}
footer {
    padding: 6px 40px 6px 40px;
    background: #d6d6d6;
    font-family: "Lucida Sans Unicode";
    color: #444444;
    font-size: 11px;
    text-align: right;
    clear: both;
    border-top: 1px solid #00000038;
}
footer a{
    text-decoration: none;
    color: #444444;
    font-family: "Lucida Sans Unicode";
    font-size: 11px;
}

.separator {
    color: #00000085;
    font-size: 13px;
}