@font-face {
    font-family: Vercetti;
    src: url("fonts/Vercetti-Regular.woff2");
    font-weight: normal;
    font-style: normal;
}

:root {
    --left-color:  rgb(252,225,231);
    --right-color: rgb(75,85,161);
    --text-color: rgb(236,97,89);
    --border-color: var(--text-color);
    --border-color-right: var(--text-color);
    --link-color: var(--text-color);
}

body {
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1, 'dlig' 1, 'ss03' 1, 'cv11' 1;
    font-size: 16px;
    padding: 0px;
    margin: 0px;
}

@supports (font-variation-settings: normal) {
  body { font-family: InterVariable, sans-serif; }
}

em {
    font-style: normal;
}

body em {
  font-style: italic;
}

.title {
    margin-bottom: 18px;
}

div.left .active {
    text-shadow: 0 0 5px var(--text-color);
}

div.right .active {
    text-shadow: 0 0 5px var(--text-color);
}

div {
    display: grid;
    align-items: center;
    border: none;
}

div.right, div.left {
    grid-template-rows: 40px auto;
    align-items: start;
    height: 100%;
    overflow: scroll;
}

div.vertical-container {
    grid-template-columns: auto 50%;
    height: 100vh;
    color: var(--text-color);
}

div.left {
    background-color: var(--left-color);
}

div.right {
    background-color: var(--right-color);
    color: var(--text-color-right);
}

div.head {
    top:0px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--border-color);
}

div.right div.head {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 15px;
    background-color: var(--right-color);
    position: sticky;
}

div.container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
}

div.main {
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
}

div#works, div#contact, div#research {
    display: none;
}

div.feed {
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    grid-template-rows: 20% auto;
    align-items: start;
}

div#news div.feed {
    border-bottom: 1px solid var(--border-color);
}

div#works div.feed {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

img {
    width: 100%;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

figure {
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 0;
	margin-right: 0;
}

figcaption {
	font-size: 0.8em;
}

div.logo {
    grid-template-columns: 125px auto;
    grid-column-gap: 25px;
}

.wide {
    grid-column-start: 1;
    grid-column-end: 3;
}

.high {
	grid-row: span 2;
}

p {
    line-height: 1.1;
    margin-bottom: 5px;
    margin-top: 5px;
}

.comment {
	font-size: 0.8em;
}

div.content {
    margin-top: 10px;
}

div.head div.content {
    margin-top: 0px;
}

a {
    cursor: pointer;
}

a:link, a:visited {
    color: var(--link-color);
}

a[target='_blank']:before {
    content: '\2197\202F';
}
