@font-face {
    font-family: 'Dogica'; /* Name you'll use in your CSS */
    src: url('/fonts/dogica.ttf') format('truetype'),
         url('/fonts/dogicabold.ttf') format('truetype'); /* Path to font files */
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Controls font loading behavior */
    font-size: 1rem;
}

@font-face {
    font-family: 'Dogica2'; /* Name you'll use in your CSS */
    src: url('https://greeenhouse.neocities.com/fonts/dogica.ttf') format('ttf'),
         url('https://greeenhouse.neocities.com/fonts/dogicabold.ttf') format('ttf'); /* Path to font files */
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Controls font loading behavior */
    font-size: 1rem;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: black;
    color: aliceblue;
    font-family: "Dogica", "Dogica2", "Bytesized", "Pixelify Sans", sans-serif;
    font-size: 1.2rem;
    line-height: 2rem;
}
nav {
    display: flex;
    height: 15vh;
    column-gap: 16px;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.8);
}
.categories {
    padding-left: 16px;
    border-left: 1px solid;
    font-size: 2.5rem;
}
.catButton {
    letter-spacing: 0px;
    color: white;
    transition: 0.3s;
    font-size: 1.5rem;
    text-decoration: none;
}
.catButton:hover{
    color: orange;
    font-weight: bolder;
    letter-spacing: 8px;
}

.logo{
    flex-shrink: 1;
    display: contents;
}

.mainBox {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    gap: 16px;
    padding: 8px 8px;
}

.mainBoxVertical {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 16px;
    padding: 8px 8px;
}

.monthBox{
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 8px;
    border: 1px solid white;
    background-image: url("/res/img/bg1.png");
    text-align: justify;
    justify-self: center;
    font-size: 0.5rem;
    line-height: 1rem;
    width: 50%;
}

.link{
    color: orange;
}


.left{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.postArea {
    display: flex;
    flex: 4;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px;
    padding: 8px;
    border: 1px solid gray;
    background-color: rgba(0, 0, 0, 0.5);
}

.archiveButton {
    align-self: flex-end;
    width: 100px;
    padding: 8px;
    border: 1px solid;
    color: orange;
    font-size: 0.8rem;
    background-image: url("/res/img/bg2.png");
}

.archiveButton a{
    color: orange;
}

.postNormal {
    flex: 1;
    min-width: 48%;
}

.postTitle {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    padding: 4px;
    border: 1px solid white;
    border-bottom: none;
    background-image: url("/res/img/bg2.png");
}

.postTitleInvert {
    align-self: flex-end;
    width: 50%;
    padding: 4px;
    border: 1px solid white;
    border-bottom: none;
    background-image: url("/res/img/bg1.png");
}

.tags{
    color: cadetblue;
}

.postContent {
    padding: 8px;
    border: 1px solid white;
    background-image: url("/res/img/bg1.png");
    text-align: justify;
    font-size: 0.5rem;
    line-height: 1rem;
}

.lerTudo {
    color: orange;
    font-size: 0.5rem;
}

.postContent2 {
    padding: 4px;
    border: 1px solid white;
    background-image: url("/res/img/bg3.png");
}

.date {
    color: darkgoldenrod;
}

/* ==========================================================================
   5. COMPONENTES DE ARTE
   ========================================================================== */
side {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 20%;
    gap: 16px;
    font-size: 0.7rem;
}

.right{
    display: flex;
    flex-direction: column;
    flex-grow: 0;
}

.bar{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.artDestaque{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.arteNormal {
    flex: 1;
    min-width: 20%;
}

.arteContent {
    max-height: 50vh;
    padding: 4px;
    border: 1px solid white;
    background-color: white;
}

.arteTitle {
    display: flex;
    justify-content: space-between;
    width: 50%;
    padding: 4px;
    border: 1px solid white;
    background-image: url(bg2.png);
}

.arte {
    max-width: 90%;
    max-height: 100%;
    border-bottom: 1px solid black;
}

.arteCaption {
    color: black;
}


.destaqueBox {
    display: flex;
    flex-direction: column;
}

.destaque {
    margin-bottom: 8px;
    border: 1px solid white;
    background-image: url("/res/img/bg1.png");
}

.projBar {
    display: flex;
    flex-direction: column;
}

.projRealBar {
    min-height: 10vh;
    border: 1px solid white;
    background-image: url("/res/img/bg2.png");
}