/*
Theme Name: Luispress
Author: Luis Collado
Version: 1.0
Description: Minimal wordpress theme
*/

/* Your frontend CSS starts here */
body {
    font-family: sans-serif;
    max-width: 800px;
    margin: 0 auto;
}


/* navbar */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}

.single-post-details{
    padding: 0.25em 0em;
    cursor: pointer;
}

.single-post-details>summary:hover{
    box-shadow: -0.25em 0em 0em white, -0.5em 0em 0em black;
}
