*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Simplipixa';
    src: url('/static/font/Simplipixa_v1.otf') format('opentype');
}
@font-face {
    font-family: 'AtariSmall';
    src: url('/static/font/AtariSmall.ttf') format('truetype');
}

@font-face {
    font-family: 'skinnyblack';
    src: url('/static/font/Skinny Black.ttf') format('truetype');
}

@font-face {
    font-family: 'Blinker';
    src: url('/static/font/Blinker-Regular.ttf') format('truetype');
}

.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.banner .content .title{
    font-family: 'Blinker', sans-serif;
    font-size: 6rem;
    color: white;
    text-align: center;
    font-weight: bold;
}
.banner::before{
    content: '';
    position: absolute;
    inset: 0;
    background: url("/static/media/pics/_Z300262.png") no-repeat center;
    background-size: cover;
    background-position: center;
    z-index: -1;

    mask-image: url('/static/img/glitch.gif');
    mask-size: cover;
    mask-position: center;
}



.container{
    display: flex;
    flex-direction: row;
    background-color: black;
    font-family: 'Blinker', sans-serif;
    font-weight: bold;
}
.box-1, .box-2, .box-3{
    padding: 20px;
}

.box-1{
   flex: 1;
    background-image: url("/static/media/pics/_Z300262.jpg");
    background-color: rgba(0, 0, 0, 0.75);
    background-blend-mode: darken;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-size: 1.5rem;
}
.box-1 .h1{
    font-family: 'Simplipixa', sans-serif; /* Fallback to sans-serif if the font fails to load */
    color: white;
    font-size: 4rem;
}
.box-1 .h2{
    color: white;
    font-size: 1.5rem;
    /* font-weight: bolder; */
    padding-top: 200px;
}

.box-2{
    color: white;
    flex: 1;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    height: 100vh;
    background-image: url("/static/media/pics/bwhead_1200x1500_cnt.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.box-2 .h1{
    font-family: 'skinnyblack', sans-serif; /* Fallback to sans-serif if the font fails to load */
    color: limegreen;
    font-size: 4rem;
    font-weight: bolder;
}
.box-2 .iframe{
    width: 100%;
    height: 317px;
    border: none;
}
.box-3{
    flex: 1;
    height: 100vh;
    background-image: url("/static/media/pics/_Z300266.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    text-align: right;
    color: white;
    font-size: 1.5rem;
}
.box-3 .h1{
    font-family: 'AtariSmall', sans-serif; /* Fallback to sans-serif if the font fails to load */
    color: white;
    font-size: 5rem;
    font-weight: bolder;
}
.box-3 .h2{
    font-family: 'skinnyblack', sans-serif; /* Fallback to sans-serif if the font fails to load */
    color: white;
    font-size: 5rem;
    font-weight: bolder;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    padding: 10px;
    display: none;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 1.2rem;
    font-family: 'BlinSimplipixaker', sans-serif;
}
.nav-menu a:hover {
    
    font-family: 'Simplipixa', sans-serif;
    color: limegreen;
}

@media (max-width: 1372px) {
    .container {
        flex-direction: column;
    }
    .box-1, .box-2, .box-3 {
        background-position: top;
        width: 100%;
    }
    .box-1 .h1 {
        color: white;
        font-size: 4rem;
        font-weight: bolder;
    }
    .box-3 .h1 {
        color: white;
        font-size: 4rem;
        font-weight: bolder;
    }
    .nav-menu {
        display: flex;
    }
}

@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }
    .box-1, .box-2, .box-3 {
        width: 100%;
        height: auto;
        background-size: cover;
        padding: 10px;
    }
    .box-1 .h1, .box-3 .h1 {
        font-size: 3rem;
    }
    .box-2 .h1 {
        font-size: 2.5rem;
    }
    .box-1 .h2, .box-3 .h2 {
        font-size: 1.2rem;
    }
    .box-2 .iframe {
        height: 200px;
    }
    .nav-menu {
        display: flex;
    }
}

@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }
    .box-1, .box-2, .box-3 {
        width: 100%;
        height: auto;
        padding: 10px;
    }
    .box-1 .h1, .box-3 .h1 {
        font-size: 3rem;
    }
    .box-2 .h1 {
        font-size: 2.5rem;
    }
    .box-1 .h2, .box-3 .h2 {
        font-size: 1.2rem;
    }
    .box-2 .iframe {
        height: 200px;
    }
    .nav-menu {
        display: flex;
    }
}