/* must have */

@font-face {
    font-family: myFont;
    src: url(../assets/neocitiesfont.ttf);
}

body {
    background-image: url(../assets/backgrounds/knifebg.gif);
    color: black;
    font-family: myFont;
    font-size: 200%;
    
}

html {
    cursor: url(../assets/cursors/knife.png), auto;
    image-rendering: pixelated;
}

a {
    cursor: url(../assets/cursors/cursors.png), auto;
}


/* main for typical page */

article {
    text-align: center;
    width: 35%;
    margin: auto; 
    background-image: url(../assets/angels/bg.png);
    background-color: white;
    background-repeat: repeat-x;
    border: black 3px solid;
    color:red;
    margin-bottom: 15px;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    display: flex;
    justify-content: center;
}

.navbar>a {
    padding-left: 10px;
    padding-right: 10px;
}



/* main for mobile page */

@media only screen and (max-width: 700px) {
    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
    }
    .logo {
        width: 90vw;
    }
    img{
        width: 30vw;
    }
    article{
        width: 70%;
    }
}