@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

:root {
    --vt-color: hsl(346, 78%, 41%);
    --vt-color-light: hsl(346, 53%, 64%);
    --vt-color-pale: hsl(346, 61%, 78%);
    --vt-color-powder: hsl(346, 63%, 89%);

    --steel-blue: #5977b4;
    --light-steel-blue: #6c88c0;
    --powder-steel-blue: #dfeaff;
}

.vvfont {
    font-family: 'Kaushan Script', cursive !important;
}

nav:not(.transparent-nav) a#logo img:last-of-type,
body[data-white="true"] nav.transparent-nav a#logo img:first-of-type,
body[data-white="false"] nav.transparent-nav a#logo img:last-of-type {
    display: none;
}

nav:not(.transparent-nav) .linebutton.white {
    color: var(--vt-color);
}

nav:not(.transparent-nav) .linebutton.white:hover {
    background-color: hsla(346, 78%, 41%, 0.1);
}

nav:not(.transparent-nav) .linebutton.white:active {
    background-color: hsla(346, 78%, 41%, 0.2);
}

.transparent-nav {
    background-color: transparent !important;
    box-shadow: none !important;
}

.transparent-nav img {
    translate: 10px 10px !important;
}

.html_editor_content {
    line-height: 1.5;
}

.html_editor_content h2 {
    color: var(--steel-blue);
}

.html_editor_content h3 {
    color: var(--light-steel-blue);
}

.html_editor_content strong {
    font-weight: 600;
}

.html_editor_content figure {
    position: relative;
    aspect-ratio: 3/2;
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 40px auto 80px auto;
    color: #ffffff00;
}

.html_editor_content figure img {
    aspect-ratio: 3/2;
    object-fit: cover;
    width: 100%;
    max-width: 600px;
    box-shadow: var(--shadowHov);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0;
    transform-origin: top center;
    cursor: pointer;
}

.html_editor_content img {
    position: relative;
    width: 100%;
    max-width: 600px;
    box-shadow: var(--shadowHov);
    cursor: pointer;
    margin: 40px auto;
    display: block;
}

.html_editor_content figure img:nth-of-type(1),
.html_editor_content figure img:nth-of-type(2),
.html_editor_content figure img:nth-of-type(3) {
    opacity: 1;
}

.html_editor_content figure img:nth-of-type(1) {
    z-index: 2;
}

.html_editor_content figure img:nth-of-type(2) {
    z-index: 1;
}

.html_editor_content figure img:nth-of-type(2) {
    translate: 0 -5%;
    scale: .9;
}

.html_editor_content figure img:nth-of-type(3) {
    translate: 0 -10%;
    scale: .8;
}

.html_editor_content figure:hover img:nth-of-type(1) {
    translate: 0 5%;
}

.html_editor_content figure:hover img:nth-of-type(3) {
    translate: 0 -15%;
}

.html_editor_content blockquote {
    position: relative;
    font-weight: 400;
    font-size: 24px;
    font-style: italic;
    color: var(--steel-blue);
    margin-top: 2em;
    margin-bottom: 2em;
    margin-right: 0;
}

.html_editor_content blockquote * {
    font-weight: 400;
    margin: 0;
}

.html_editor_content blockquote::before {
    content: '”';
    color: var(--powder-steel-blue);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 196px;
    font-weight: 900;
    transform: translate(-50%, -30%);
    z-index: -1;
}

.html_editor_content ul,
.html_editor_content ol {
    font-weight: 500;
    font-style: italic;
    
}

.html_editor_content a {
    display: inline-block;
    font-weight: 700;
    color: var(--vt-color);
    position: relative;
}

.html_editor_content a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--vt-color);
    transform-origin: bottom left;
}

.html_editor_content a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom right;
}