
body{
    background: url(/graphics/Writing/banner2.jpg);
    background-size: cover;

    display: flex;
    justify-content: center;
}
.a4{
    background: rgba(78, 78, 78, 0.555);
    backdrop-filter: blur(10px);
    box-shadow: 10px 10px 80px rgba(0, 0, 0, 0.785);
}

/* MAINPAGE */

.table{
    background: rgba(68, 68, 68, 0.378);
    backdrop-filter: blur(10px);
    border-radius: 10px;

    display: flex;
    flex-direction: column;

}

.template-row{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.year{font-size:2.2rem;font-weight: bolder;letter-spacing: 2px;}
.month{font-size:1.8rem;font-weight: bold;letter-spacing: 2px;}

.monthly-entries{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

    padding-left: 300px;
}
.make-entries-inline{
    

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-bottom: 15px;
}

.poem-link{
    text-decoration: none;
    
    word-break: break-word;
    overflow: break-word;
}
.poem-link:hover{
    opacity: .5;
}

/* RESPONSIVE */

@media (max-width:600px){


/* table */
.monthly-entries{
    padding-left: 10px;
    
}
.make-entries-inline{
    flex-direction: column;
    justify-content: space-between;
}
.date{
    opacity: .5;
}
.poem-link{
    font-size: 1.3rem;
}
}