@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');

:root {
    --color: #ffffff;
    --color-hover: #e93f33;
    --background: #000;

    --color-alt: #e93f33;
    --color-bg-alt: #180b07;
    --font-alt: 'Young Serif', serif;
}

body, section {
    background-color: var(--background);
}

.img_container {
    margin: 20% 0;
    width: 70%;
    position: relative;
}

.img_container:first-child {
    margin: 0 0 20%;
}

.img_container:nth-child(even) {
    margin-right: 0;
    margin-left: auto;
}

img {
    height: 100%;
    width: 100%;
    transform-origin: left;
    object-fit: cover;
}

.mask {
    visibility: hidden;
    position: relative;
    width: 80%;
    height: 80%;
    overflow: hidden;
}