@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
body {
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
}

.left {
    position: fixed;
    left: 0;
    top: 0;
    width: 50vw;
    height: 100vh;
    display: block;
}

.cta {
    margin-top: 30px;

    /*width: 200px;*/
    /*height: 40px;*/
    font-family: "Times New Roman", serif;
    font-size: 22px;
    /*border: solid 1px black;*/
    outline: 0;
    background-color: transparent;
    border: 0;
    text-decoration: underline;
    /*text-decoration-thickness: 2px;*/
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    padding: 0;
    transition: 0.5s;
    background: white;
}
.cta:hover {
    background: black;
    padding: 15px;
    color: white;
    /*scale: 1.05;*/
    text-decoration: none;
}

.title {
    position: relative;
    font-family: "Bodoni Moda", serif;
    left: 20px;
    margin: 0;
    top: 20px;
    font-size: 55px;
    font-weight: 400;
    width: calc(50vw - 20px);
    /*z-index: 10;*/
    text-align: center;
    display: block;
}
.title-sub {
    margin: 0;
    text-align: center;
    font-family: "Bodoni Moda", serif;
    font-size: 20px;
    margin-bottom: 0;
}
.title-bottom {
    font-family: "Bodoni Moda", serif;
    font-style: italic;
    font-size: 18px;
    text-align: center;
}
.subtitle {
    font-family: "Playfair Display", serif;
    text-align: center;
}
.gal-left {
    cursor: pointer;
    color: black;
    /*text-decoration: none;*/
}
.gal-left:hover > .gal-left-title {
    text-decoration: underline;
}

.gal-left-img {
    position: fixed;
    left: 20px;
    width: calc(50vw - 20px - 20px);
    height: calc(90vh - 140px - 80px);
    /*top: 140px;*/
    background-color: red;
    padding: 0;
    display: block;
    bottom: 75px;
    border: solid 1px black;
    object-fit: cover;
}
.gal-left-title {
    display: block;
    position: fixed;
    left: 20px;
    bottom: 15px;
    font-size: 35px;
    font-weight: 400;
    font-family: "Bodoni Moda", serif;
    margin: 0;
}

.right {
    position: fixed;
    left: 50vw;
    width: 50vw;
    top: 0;
    /*margin-top: 20px;*/
    height: 100vh;
    /*background-color: blue;*/
    padding: 10px;
    padding-top: 30px;
    overflow: scroll;
}

.right-article {
    height: 450px;
    width: calc((50vw - 60px) / 2);
    display: inline-block;
    cursor: pointer;
    color: black;
    text-decoration: none;
}

.right-article img,
.right-article-full img {
    background-color: green;
    width: 100%;
    height: 87%;
    object-fit: cover;
}
.right-article h2,
.right-article-full h2 {
    margin: 0;
    position: relative;
    top: 0%;
    font-size: 32px;
    font-weight: 400;
    font-family: "Bodoni Moda", serif;
    padding-left: 15px;
    transition: 0.2s;
    line-height: 40px;
}
.right-article:hover h2,
.right-article-full:hover h2 {
    text-decoration: underline;
}
.right-article-full {
    width: calc(50vw - 30px);
    height: 450px;
    display: inline-block;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
