/*GLOBAL STYLES*/
:root{
    --bg-color: #FEEFDD;
    --text-color: #000000;
    --white: #FFFFFF;
}

@font-face {
    font-family: "Aspeketa Regular";
    src: url(/assets/fonts/Aspekta-400.woff2);
    font-weight: 400;
}

@font-face {
    font-family: "Aspeketa Bold";
    src: url(/assets/fonts/Aspekta-700.woff2);
    font-weight: 700;
}

@font-face {
    font-family: "Aspeketa Extra Bold";
    src: url(/assets/fonts/Aspekta-900.woff2);
    font-weight: 900;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-color);
    color: var(--text-color);
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


p, input, label, a, ul, figcaption{
    font-family: 'Aspeketa Regular', sans-serif;
    font-size: 1.25rem;
}

/*
main{
    margin-top: 1.5rem;
}
*/

.container{
    width: 85%;
    max-width: 62rem;
    margin: 0 auto;
}


/*ABOUT STYLES*/
.about__text{
    display: block;
    line-height: 160%;
    margin-block-start: 1rem;
    margin-block-end: 1rem;
}

.post__item{
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
}


@media only screen and (max-width: 768px){
    p, input, label, a, ul{
        font-size: 1rem;
    }

    .post__title a {
        font-size: 0.9rem;
    }

    .post__date p {
        font-size: 0.9rem;
    }
    
    h1{
        letter-spacing: -1px;
    }
}

/*FOOTER STYLES*/
footer{
    margin-top: auto;
    margin-bottom: 1rem;
    text-align: center;
    padding-block-start: 1.5rem;
    padding-block-end: 1.5rem;
}