:root {
    --background: #fcfcfc;
    --background-gray: #c6c6c6;
    --main: #212121;
    --main-tp: #1A212121;
    --highlight: #39FF14;
    --tr-time: 0.6s;
    --border-size: 1.4px;
    --font-main: 'IBM Plex Mono', monospace;
    --font-title: 'PicNic', serif;
    --font-header: 'Basteleur Moonlight', sans-serif;
    --font-transmo: 'Transmission Bold', sans-serif;
}
@font-face {
    font-family: 'Basteleur MoonLight';
    src: url('fonts/Basteleur-Moonlight.woff2') format('woff2'),
        url('fonts/Basteleur-Moonlight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'PicNic';
    src: url('fonts/PicNic-Regular.woff2') format('woff2'),
        url('fonts/PicNic-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Transmission Bold';
    src: url('fonts/TransmissionHouse-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;1,300&display=swap');

html {
    box-sizing: border-box;
    color: var(--main);
    background-color: var(--background);
    font-weight: 200;
    scrollbar-width: none;
}
body {
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-main);
}

html,
body {
    height: 100%;
    font-size: 14px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
*::-webkit-scrollbar {display: none;}
*{-ms-overflow-style: none; scrollbar-width: none;}
.uniform__potty { position: absolute;left: -9999px;}

.main-header {
    position: sticky;
    top: 0;
    z-index: 3;
    background-color: var(--background);
    padding-top: 5px;
}

.main-header::after {
    content: "";
    width: 100%;
    height: 15px;
    position: absolute;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, var(--background) 100%);
    background: linear-gradient(to bottom, var(--background) 0%, rgba(255, 255, 255, 0) 100%);
}
h1{
    text-align: center;
    font-size: 1.5em;
    line-height: 1;
    font-weight: 200;
    padding-bottom: 12px;
    text-transform: uppercase;
}
h1.title{
    font-family: var(--font-title);
    position: fixed;
    z-index: 1;
    color: var(--highlight);
    opacity: 0;
    font-size: 7.5vw;
    width: 65%;
    left: 10%;
    top: 30%;
    text-align: left;
    padding: 45px 0;
    pointer-events: none;
    transition: all var(--tr-time);
}
h1.header{
    font-family: var(--font-header);
    letter-spacing: 5px;
    padding: 0;
}
h2{
    font-size: 1.1em;
    font-family: var(--font-main);
    font-style: italic;
    line-height: 1.1;
}
h3{
    text-align: right;
    font-size: 1.1em;
    font-weight: normal;
    padding: 15px 0;
    text-transform: uppercase;
}
strong{font-weight: 600;}
p{line-height: 1.7; margin-bottom: 20px;}
a{
    transition: all var(--tr-time); 
    color: inherit;
    text-decoration: none;
}
li{list-style: none;}
.button{
    background-color: var(--background-gray);
    display: inline-block;
    padding: 15px;
    transition: all var(--tr-time);
    filter: drop-shadow(0px 0px 8px var(--main-tp));
    
    border: 1.4px solid var(--main);
}
.button:hover{
    filter: drop-shadow(0px 0px 8px var(--highlight));
    cursor: pointer;
    background-color: var(--highlight);
    border: 1.4px solid var(--highlight);
}
a:hover{ 
    filter: drop-shadow(1px 1px 6px var(--highlight));
    cursor: pointer;
}
.title img:hover{opacity: 0; cursor: not-allowed;}
.main-container{
    margin: 0 25px;
    min-height: calc(100% - 25px);
    width: calc(100vw - 50px);
    margin-bottom: -60px;
}
.main-container:after{content: ""; display: block;}
footer, .main-container:after{height: 60px;}
.flex-div{
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-family: sans-serif;
    align-items: center;
}
.title{font-weight: 600; font-size: 2.5em;}
.title img{height: 3vh; max-height: 5vh;} /* rather a px value */
.address{font-weight: 600; letter-spacing: 1px; font-family: var(--font-transmo);}

/* COLUMN 2 */
.col-header {
    padding: 10px 0;
    border-bottom: 3px solid var(--highlight);
    border-top: 3px solid var(--highlight);
}
/* .title.event{opacity:0;} */
.article{
    border: 1.4px solid var(--main);
    padding: 10px;
    transition: all var(--tr-time);
}
.article.show {
    padding: 0;
    margin: 0 20px;
    filter: grayscale(100%);
}
.article.show:hover{filter: none; cursor: help;}
.col-2:hover .title { opacity: 0.5;}
.event-info{padding: 10px;}
.event-info p{ text-align: right;}

/* COLUMN 3 */
.article.become {
    border-radius: 50%;
    margin: 10px;
}
.become h1{ 
    font-family: var(--font-header);
    padding: 0; 
}
.article.become:hover {
    color: var(--highlight);
    border-color: var(--highlight);
    box-shadow: 0 0 15px var(--highlight);
    cursor: pointer;
}
.more-info {
    border: 1.4px solid var(--main);
    border-radius: 25px;
    padding: 10px;
}

.content {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 2fr 1fr;
    margin: 20px 0;
    padding-top: 15px;
}

.column{padding: 0 10px; overflow-y: scroll;}
.col-1{position: sticky; top: 12vh; height: 40vh; overflow: hidden;}
.new-site{
    font-family: var(--font-header);
    padding: 10px 0;
    font-size: 1.2em;
    filter: drop-shadow(1px 1px 2px var(--highlight));
    animation: blinker 3s linear infinite;
    -webkit-animation: blinker 3s linear infinite;
}
.col-2 img{width: 100%;}

footer{
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    font-size: 0.8em;
    margin: 0 25px;
    padding-top: 10px;
    border-top: var(--border-size) solid var(--main);
    position: relative;
    z-index: 1;
}
footer img{width: 60%;}

/* MEDIA QUERIES */
@media screen and (min-width: 501px) and (max-width: 850px){
    .content{grid-template-columns: 1fr 2fr;}
    .col-1{height: 60vh;}
    .col-3{grid-column-start: 2; z-index: 2;}
    .article.become{margin: 20px 0px; width: 80%;}
    footer img{width: 90%;}
}

@media screen and (max-width: 500px) {
    .main-container{margin: 0 10px; width: calc(100vw - 20px);}
    .content{grid-template-columns: auto; row-gap: 25px;}
    .col-1{text-align: center; position: relative; top: 0; height: auto;}
    h1.title{position: absolute; left: 0%; top: 46%; font-size: 18vw; text-align: center;}
    .title.event{opacity:1;}
    .article.show{filter: none;}
    .col-3{z-index: 1; margin: 0 20px;}
    .article.become{margin: 50px;}
    footer{grid-template-columns: auto; font-size: 0.6em;}
    footer * {text-align: center; justify-self: center;}
    footer img{width: 50%;}
    .socials{padding-bottom: 15px;}
}

/* ANIMATIONS */
@keyframes blinker { 50% {opacity: 0;} }
@-webkit-keyframes blinker { 50% {opacity: 0;} }