*{
    margin: 0;
    padding: 0;
}
div#today{
    width: 200px;
    height: 120px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    background-color: darkgray;
    position: absolute;
    top: 50px;
    right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
div#todayYear,div#todayWeek{
    width: 100%;
    height: 30px;
    font-size: 22px;
    font-weight: bold;
}
div#todayYear{
    color: white;
    background-color: rgb(158, 86, 86);
}
div#todayDay{
    color: black;
    font-size: 60px;
    font-weight: bold;
}
@media screen and (max-width: 680px){
    div#today{
        display: none;
    }
}
main{
    width: 80%;
    margin: 0 auto;
    padding: 20px 0 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
article{
    height: 200px;
    padding: 20px 0 30px 0;
    box-sizing: border-box;
    border-bottom: 2px solid lightgray; 
    display: flex;
    justify-content: space-around;
}
div.date{
    width: 15%;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    display: flex;
    flex-direction: column;
}
div.year{
    margin:20px 0 10px 0; 
    font-size: 22px;
}
div.day{
    font-size: 30px;
}
div.diary{
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
}
div.diary > p{
    overflow: hidden;
}
div.showMore{
    width: 100%;
    text-align: center;
    letter-spacing: 0.3em;
    background-color: rgba(255,255,255,0.7);
    position: absolute;
    bottom: 0;
    pointer-events: none;
}
div.showMore > a{
    position: relative;
    z-index: 100;
}
div.img{
    width: 15%;
}
div.img > img{
    width: 100%;
}