body {
    --main-color: #454545;
    --secondary-color: #cbc0d3;
    /* --light-blue: rgb(33, 158, 188);
    --vlight-blue: rgb(142, 202, 230);*/
    --light-grey: rgb(225, 229, 242); 
    --photo-width: 280px;
    padding: 40px 80px;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    color: var(--main-color);
}


/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #d3d3d3;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
}

/* Align content with bio (start after sidebar) */
.site-brand {
    color: var(--main-color);
    font-weight: 600;
}
.site-nav ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    /* font-family: "Georgia", serif; */
    font-weight: 200;
}
.site-nav li {
    display: inline;
    margin-left: 16px;
}
.site-nav a {
    text-decoration: none;
}


/* name and various other*/
/* h1, h2{ 
    color: var(--main-color);
    margin: 10px 0px; 
    font-size: 35px;
    font-weight: 200;
}
h3 {
    color: var(--main-color);
    font-weight: 200;
    font-family: "Georgia", serif;
} */
.custom-link {
    /* color: var(--main-color); */
    color: var(--secondary-color)
    /* font-size: 13px; */
    /* font-weight: 500; */
}
.box-link {
    /* text-decoration: none; */
    color: var(--secondary-color);
    /* font-weight: 400; */
}
.publi-title{
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
}
.publi-text {
    /* font-size: 16px; */
    margin-top: 0px;
    text-align: justify;

}
.publi-proc{
    font-style: italic;
    /* font-size: 13px; */
    margin-bottom: 0px;

}
.publi-pic {
    width: 200px;
    border-radius: 0px;
    object-fit: cover;
    margin-right: 30px;
    margin-left: 10px;
   
}
.container {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.box {
    display: inline-block;
    padding: 2px;
    /* border: 1.5px solid var(--secondary-color); */
    /* border-radius: 5%; */
    margin-top: 0px;
    /* background-color: var(--main-color); */
  }


  /* Responsive: full-width on small screens */
@media (max-width: 640px) {
    body {
        width: 100%;
        padding: 20px;
    }

    .site-nav li {
        margin-left: 10px;
    }

    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .publi-pic {
        width: 100%;
        max-width: 420px;
        margin-right: 0px;
        margin-left: 0px;
    }
}