@font-face {
    font-family: Inter;
    src: url("Fonts/Inter.ttf") format("opentype");
}

@font-face {
    font-family: P052;
    src: url("Fonts/P052-Roman.ttf") format("opentype");
}

@font-face {
    font-family: P052;
    font-weight: bold;
    src: url("Fonts/P052-Bold.ttf") format("opentype");
}

body {
    margin: 0;
    padding: 0;
    background-color: #e2e2e2;
}

a {
    color: #ff00bf;
}

a.link {
    color: #ff00bf !important;
    text-decoration: underline !important;
    cursor: pointer;
}

mark {
    background-color: #fff;
    color: #000;
    padding: 0 .25em;
    margin: 0 .25em;
    outline: 2px solid #ff00bf;
}

input, textarea {
    border-radius: 0;
    border: 2px solid #000;
    height: 2em;
    margin: auto 0;
    padding: 0 .5em;
    width: calc(100% - 1em - 4px);
}

input:focus, textarea:focus {
    border-color: #000;
    outline: none;
}

input[type=file] {
    padding: .2em .5em 0 .5em;
    border: 2px solid #ff00bf;
}

textarea {
    height: 8em;
    resize: none;
    height: 10em;
}





.background {
    width: 100%;
    background-color: #e2e2e2;
}

.background.dark {
    background-color: #16171b;
}

.content {
    margin: 0 auto;
    max-width: 80em;
    color: #000;
    background-color: #fff;
}

.background.dark .content {
    color: #000;
    background-color: #e2e2e2;
}

.space {
    background-color: #e2e2e2;
    height: 3em;
    width: 3em;
}







.row {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.row.video {
    background-color: #000;
    padding: 5em 5em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100vh;
    width: calc(100vw - 10em);
}

.row.image {
    background-color: #fff;
    padding: 5em 5em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100vh;
    width: calc(100vw - 10em);
}

@media only screen and (max-width: 1000px) {
    .row {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 100%;
    }

    .row.video {
        padding: 5em 1em;
        width: calc(100vw - 2em);
    }

    .row.image {
        padding: 5em 1em;
        width: calc(100vw - 2em);
    }
}

.item .text {
    padding: 3em;
    width: calc(100% - 6em);
    margin: auto;
}

.item .text .title {
    font-size: 2em;
}

.item .text .date {
    font-size: .8em;
    color: #ff00bf;
}

.item .text .description {
    padding: 1em 2em;    
}

@media only screen and (max-width: 1000px) {
    .item .text {
        padding: 1.5em;
        width: calc(100% - 3em);
        margin: auto;
    }
    
    .item .text .description {
        padding: .5em 1em;    
    }
}

.item img, .item video {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}








.menu {
    background-color: #e2e2e2;
    padding: 1em 3em;
    display: flex;

    gap: 3em;
}

.menu a {
    color: #000;
}

@media only screen and (max-width: 1000px) {
    .menu {
        padding: 1em 2em;
    }
}




.entry h3 {
    margin: 0 0 .5em 0;
    padding: 0;
}

.entry {
    padding: .5em 2em;
}

.entries {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.entries a {
    color: #000;
    text-decoration: none;
}

.entries .entry:hover {
    outline: 2px solid #ff00bf;
    
}

#entryTitle {
    display: flex;
    justify-content: space-between;
}






.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}


.top-1 {
    padding-top: 2em;
}

.top-2 {
    padding-top: 4em;
}

.top-3 {
    padding-top: 6em;
}

.bottom-05 {
    padding-bottom: 1em;
}

.bottom-1 {
    padding-bottom: 2em;
}

.bottom-2 {
    padding-bottom: 4em;
}

.bottom-3 {
    padding-bottom: 6em;
}



@media only screen and (min-width: 1000px) {

    .item.right-1 {
        transform: translate(2em);
    }
    
    .item.right-2 {
        transform: translate(4em);
    }
    
    .item.right-3 {
        transform: translate(6em);
    }
    
    
    .item.left-1 {
        transform: translate(-2em);
    }
    
    .item.left-2 {
        transform: translate(-4em);
    }
    
    .item.left-3 {
        transform: translate(-6em);
    }
    
    .item.scale-1 img {
        width: 120%;
        max-width: 100vw;
    }
}

@media only screen and (max-width: 1000px) {

    .item.right-1 {
        margin-left: 2em;
    }
    
    .item.right-2 {
        margin-left: 4em;
    }
    
    .item.right-3 {
        margin-left: 6em;
    }
    
    
    .item.left-1 {
        margin-right: 2em;
    }
    
    .item.left-2 {
        margin-right: 4em;
    }
    
    .item.left-3 {
        margin-right: 6em;
    }
    
    .item.scale-1 img {
        width: 100%;
    }
}