@font-face {
    font-family: 'IBM_CGA';
    src: url('../assets/fonts/Web437_IBM_VGA_8x16.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*::selection {
    color: #16171a;
    background-color: #fff;
}

html{
    cursor: url('../assets/cursor.png'), default;
    image-rendering: pixelated;
}

body{
    background-image: url('../assets/starbg.gif');
    background-repeat: repeat;
    image-rendering: pixelated;
    font-family: 'IBM_CGA', sans-serif;
    font-size: 32px;
    color:white;
}

a{
    cursor: url('../assets/cursorselect.png'), pointer;
}

input[type="text"]{
    cursor: url('../assets/cursortext.png'), text;
}


.container-main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 95vh;
}

 .container-section{
     background-color: #16171a;
     border: white solid 2px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 1300px;
     margin: 5px;
 }

 .container-section p{
     padding: 5px;

 }

.container-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container-logo{
    text-align: center;
    background-color: #16171a;
    margin: 10px;
    border: white solid 2px;
}
.container-logo img{
    margin-left: 20px;
    margin-right: 20px;
}

.container-nav{
    background-color: #16171a;
    display: flex;
    width: 1300px;
    justify-content: center;
    align-items: center;
    margin: 10px;
    border: white solid 2px;
}

.nav-btn{
    width: 300px;
    height: 140px;
}

.nav-btn.nav-home{
    background-image: url('../assets/nav/home.gif');
}
.nav-btn.nav-home:hover{
    background-image: url('../assets/nav/homeselect.gif');
}

.nav-btn.nav-about{
    background-image: url('../assets/nav/about.gif');
}
.nav-btn.nav-about:hover{
    background-image: url('../assets/nav/aboutselect.gif');
}

.nav-btn.nav-zine{
    background-image: url('../assets/nav/zine.gif');
}
.nav-btn.nav-zine:hover{
    background-image: url('../assets/nav/zineselect.gif');
}

.nav-btn.nav-photos{
    background-image: url('../assets/nav/photos.gif');
}
.nav-btn.nav-photos:hover{
    background-image: url('../assets/nav/photosselect.gif');
}

@media screen and (max-width: 1300px){
    .container-main{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .container-nav{
        display: flex;
        flex-direction: column;
        width: 85vw;
    }
    .container-logo{
        width: 85vw;
        margin: auto;
    }
    .container-logo img{
        width: 90%;
    }
    .container-section{
        width: 85vw;
    }
}