/* style.css */
body { 
    font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Console", monospace; 
    line-height: 1.6; 
    max-width: 650px; 
    margin: 40px auto; 
    padding: 20px; 
    background-color: #ffffff; 
    color: #1a1a1a; 
}

header { 
    border-bottom: 1px solid #ddd; 
    margin-bottom: 30px; 
    padding-bottom: 10px;
}

h1 { font-size: 1.5rem; margin: 0; }

.nav { margin-top: 10px; font-size: 0.9rem; }

.entry { margin-bottom: 2.5rem; }

.date { 
    font-weight: bold; 
    display: block;
    margin-bottom: 5px;
    color: #444; 
}

a { color: #0000EE; text-decoration: none; }
a:hover { text-decoration: underline; background-color: #ffff00; color: #000; }

footer { 
    margin-top: 60px; 
    font-size: 0.8rem; 
    color: #888; 
    border-top: 1px solid #eee; 
    padding-top: 20px; 
}

/* Estilo para as fotos que virão */
.photo-container img {
    max-width: 100%;
    filter: grayscale(100%);
    border: 1px solid #eee;
}

.photo-container img:hover {
    filter: grayscale(0%);
}

figure{
    width: max-content;
}
figcaption {
    text-align: center;
    margin-top: -5px;
    padding-top: -5px;
}