@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');
body{
    background-color: #eee;
    padding: 1em;
}
a, a:visited, a:hover{
    text-decoration: none;
    color: black;
}
.entries{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
article{
    background-color: #fff;
    padding: 1em 1em;
    margin: 1em 0.5em;
    box-shadow:rgba(220,220,220,0.7) 0 10px 8px ;
    border:  solid #ddd 1px 0;
    min-width: 200px;
    max-width: 40%;
    flex-grow: 4;
}

dl.content-editor{
  max-width: 70%;
  height: 20em;
  margin-bottom: 3em;
  margin-left: auto;
  margin-right: auto;
}
#newentry dl{
    text-align: center;
}
#newentry #title{
    width: 70%;
}
.entry-ts{
    color: #555;
    font-size: small;
    font-style: italic;
}
h1{
    text-align: center;
    display: none;
}

.top-buttons{
    text-align: center;
    margin: 2em 1em;;
    padding: 0;
}
.top-buttons li{
    list-style: none;
}

button, .button, a.button, a:hover.button, a:visited.button{
    padding: 0.5em 1em;
    background-color: #aac;
    border-radius: 10px;
    font-family: "Italianno", sans-serif;
    font-size: 28px;
    line-height: 16px;
}


@media(max-width: 1000px){
    article{
        width: 100%;
        max-width: 100%;
        margin: 0.5em 0;
    }
    body{
        padding: 0.5em;
    }
    
    dl.content-editor{
      max-width: 100%;
    }
    #newentry #title{
        width: 100%;
    }
}
