body {
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    font-size: 22px;
}

.article {
    width: 50%;
    margin: auto;
    margin-top: 2em;
    font-size: 1.5vw;
    margin-bottom: 1em !important;
    display: flex;
    flex-direction: column;
    text-align: justify;
}

.article h2 {
    font-size: 3vw;
}

h3 {
    font-size: 3vw;
    color: white;
    text-transform: uppercase;
    font: "Lato", sans-serif;
    margin-bottom: 0;
}

@media (max-aspect-ratio: 4/3) {

    .article {
        width: 95%;
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 3em;
        font-size: 3vw;
        margin-bottom: 1em !important;
    }
    .article h2 {
        font-size: 5vw;
    }
    h3 {

        font-size: 6vw;
    }
}

@media (max-aspect-ratio: 2/3) {
    .article {
        font-size: 4vw;
    }
}

@media (min-aspect-ratio: 16/9) and (max-width:749px) {
    .article {
        width: 80%;
        font-size: 2vw;
    }
}

@media (min-aspect-ratio: 16/9) {
    h3 {
        letter-spacing: 2px;
        font: "Lato", sans-serif;
        color: white;
        margin-bottom: 0;
        font-size: 2vw;
    }
}

html,
body {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none !important;
}

section .title {
    position: absolute;
    right: 5vw;
    width: 70%;
    text-align: right;
    padding-bottom: 10px;
    margin-top: -90px;
    max-height: 70vh;
}

section .title span.large {
    display: inline-block;
    font-size: 10vw;
    line-height: 11vw;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    transform: translateX(-100%);
    -webkit-animation: byBottom 1s ease both;
    animation: byBottom 1s ease both;
    letter-spacing: 0.25vw;
    font-family: "Lato", sans-serif;
    -webkit-font-smoothing: antialiased;
}

section .title div.last {
    font-size: 3vw;
    line-height: 4vw;
    color: #fff;
    -webkit-animation: byBottom 1s 0.25s ease both !important;
    animation: byBottom 1s 0.25s ease both !important;
    font-weight: 600;
    letter-spacing: 0.25vw;
    font-family: "Lato", sans-serif;
    -webkit-font-smoothing: antialiased;
    max-width: 50%;
    float: right;
}



.me-tabs h1,
.slide h1 {
    font-size: 2rem;
    margin: 0;
    font-family: "Lato", sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.2em;
    display: block;
    font-weight: 600;
    color: #1d1e22;
    z-index: 300;
    position: sticky;
    top: 70px;
}

.me-tabs-container {
    display: flex;
    flex-direction: row;
    position: sticky;
    top: 0px;
    width: 100%;
    height: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

@media (max-width:749px) {

    .me-tabs h1,
    .slide h1 {

        top: 0;
    }

    .me-tabs-container {
        display: none;
    }
}

.me-tabs-container--top {
    position: fixed;
    top: 0;
}

.me-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    /* transition: all 0.5s ease; */
    font-family: "Lato", sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.me {
    text-align: right;
    padding: 0;
    background: linear-gradient(45deg, rgba(5, 176, 219, .2) 0%, rgba(11, 11, 11, .95) 85%) 100% no-repeat, url(/images/hex-2-1200.webp) 0 0/cover no-repeat !important;
}

.me img {
    position: absolute;
    left: -5vw;
    bottom: -1vw;
    max-width: 50vw;
    max-height: 90vh;
}

.bg-alt-solid {
    background: #1F2830;
}

.bg-alt-solid h1 {
    color: white;
}

.me .scroll-down {
    position: absolute;
    right: 10%;
    bottom: 12vh;
    z-index: 0;
}

.scroll-down {
    display: block;
    text-align: center;
    font-size: 4vw;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0;
    width: 4vw;
    height: 4vw;
    font-weight: 600;
    border-bottom: 1vw solid #fff;
    border-right: 1vw solid #fff;
    z-index: 9;
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 2s ease-in-out infinite;
    animation: fade_move_down 2s ease-in-out infinite;
}

@-webkit-keyframes fade_move_down {
    0% {
        -webkit-transform: translate(0, -10px) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 10px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes fade_move_down {
    0% {
        transform: translate(0, -10px) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 10px) rotate(45deg);
        opacity: 0;
    }
}

@-webkit-keyframes byBottom {
    0% {
        transform: translateY(150%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes byBottom {
    0% {
        transform: translateY(150%);
    }

    100% {
        transform: translateY(0);
    }
}

.card {
    max-width: 600px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0em 1.5em 1.5em 1.5em;
    border-radius: 0.5rem;
    /* transition: box-shadow 0.3s, transform 0.3s; */
}


.bgimg-1,
.bgimg-2,
.bgimg-3,
.bgimg-4,
.bgimg-5,
.bgimg-6,
.bgimg-7,
.bgimg-8,
.bgimg-9,
.bgimg-10,
.bgimg-11,
.bgimg-12,
.bgimg-14 {
    position: sticky;
    opacity: 0.65;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}


.bgimg-2 {
    background-image: url("/images/microsha1.webp");
    min-height: 100vh;
}

.bgimg-3 {
    background-image: url("/images/zx-spectrum_.webp");
    min-height: 100vh;
}

.bgimg-4 {
    background-image: url("/images/R5aWGhn7_2x.webp");
    min-height: 100vh;
}

.bgimg-5 {
    background-image: url("/images/hollywood.webp");
    min-height: 100vh;
}

.bgimg-6 {
    background-image: url("/images/basic_book-1200.webp");
    min-height: 100vh;
}

.bgimg-7 {
    background-image: url("/images/leadership.webp");
    min-height: 100vh;
}

.bgimg-8 {
    background-image: url("/images/money-1024.webp");
    min-height: 100vh;
}

.bgimg-9 {
    background-image: url("/images/me_tcmk1-2.webp");
    min-height: 100vh;
    background-position: center center;
    background-size: 50vh;
}

.bgimg-10 {
    background-image: url("/images/hand-working-wheel-ceramic-artist-pottery-1189213-pxhere.com-1200.webp");
    min-height: 100vh;
}

.bgimg-11 {
    background-image: url("/images/marvin-meyer-SYTO3xs06fU-unsplash-1200.webp");
    min-height: 100vh;
}

.bgimg-12 {
    background-image: url("/images/books_book_pages_read_0.webp");
    min-height: 100vh;
}

.bgimg-14 {
    background-image: url("/images/gnivc.webp");
    min-height: 100vh;
}

@media only screen and (max-width:749px) {
    .bgimg-1,
    .bgimg-2,
    .bgimg-3,
    .bgimg-4,
    .bgimg-5,
    .bgimg-6,
    .bgimg-7,
    .bgimg-8,
    .bgimg-9,
    .bgimg-10,
    .bgimg-11,
    .bgimg-12,
    .bgimg-14 {
        background-attachment: inherit;
    }
    .bgimg-5 {
        background-image: url("/images/hollywood-min.webp");
        min-height: 100vh;
    }   
}

@media (max-aspect-ratio: 4/3) {
    section .title {
        width: 90%;
        margin-top: 0;
        padding-top: 10vh;
    }

    section .title span.large {
        font-size: 14vw;
        line-height: 15vw;
    }

    section .title div.last {
        font-size: 4.8vw;
        line-height: 6vw;
        max-width: 70%;
    }

    .me img {
        left: -5vw;
        max-height: 60vh;
        max-width: 100vw;
    }

    .me-tabs,
    .slide {
        justify-content: start;
    }
}

@media (max-aspect-ratio: 2/3) {
    .me img {
        left: -15vw;
    }

    section .title {
        padding-top: 3vh;
    }

    section .title span.large {
        line-height: 8vh;
    }

    section .title div.last {
        font-size: 3vh;
        line-height: 5vh;
        max-width: 68vw;
    }
}

@media (min-aspect-ratio: 16/9) {
    .me img {
        left: 1vw;
        max-height: 70vh;
    }

    section .title {
        padding-top: 5vw;
        width: 90vw;
    }

    section .title span.large {
        font-size: 6vw;
        line-height: 7vw;
        max-width: 70vw;
    }

    section .title div.last {
        font-size: 3vw;
        line-height: 4vw;
        max-width: 65vw;
    }
}



.background {
    background: linear-gradient(45deg, rgba(5, 176, 219, .2) 0%, rgba(11, 11, 11, .95) 85%) 100% no-repeat, url(/images/pikrepo-2-1200.webp) 0 0/cover no-repeat !important;
}

.years {
    font-weight: 800;
    font-size: 17vw;
    position: absolute; top: 50%; transform: translate(0, -50%); width: 100vw; z-index: 500;
    /* position: absolute; top: 50%; transform: translate(0, -50%); width: 100vw;
    position: absolute; top: 50%; transform: translate(0, -50%); width: 100vw; z-index: 400; */
    display: flex;
    justify-content: center;
}

.hidden {
    display: none;
}

.minimized-image {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translate(-50%, -50%);
    scale: 0.5;
    object-fit: contain;
}

.tags {
    justify-content: center;
    top: 25%;
    position: relative;
    transform: translate(0, -50%);
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}

.tags div {
    text-transform: uppercase;
    border: 1px solid;
    border-radius: 1em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.me-tabs,
.slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* background: #1F2830; */
    text-align: center;
    overflow: visible;
}

.me-tabs h2,
.slide h2 {
    font-size: 2rem;
    font-family: "Lato", sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.2em;
    display: block;
    font-weight: 600;
    color: white;
    text-align: center;
}