@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
:root {
    --yellow: #BF960A;
    --light-yellow:#EBE9CE;
    --dark:#332100;
    --card-bg:#F2EDE2;
    --dark-yellow:#BF960A;
}

body {
    font-family: "IBM Plex Serif", serif;
    font-style: normal;
    font-weight: 500;
    color: var(--dark);
    background-color: var(--light-yellow);
}
@media only screen and (max-width: 768px) {
    .container{
        max-width: unset !important;
        padding: 0px 20px;
    }
}