::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 1px solid #ffffff; 
}

body {
    background-color: #ffffff !important;
    color: #000000 !important;
    color-scheme: light;
    
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
    line-height: 1.5;
    font-size: 14px;
}

h1 {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    display: inline;
}

header {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #000; 
}

.nota {
    margin-bottom: 30px;
}

.nota img {
    width: 300px;
    height: 400px;
    display: block;
    margin-bottom: 10px;
    object-fit: cover;
    background-color: #ffffff;
}

a {
    color: #000;
    text-decoration: underline;
}

p {
    margin: 0 0 10px 0;
}

a:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

footer {
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px dotted #000;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
}