html {
    cursor: url("../cursors/cursor_normal.cur"), auto;
}

@font-face {
    font-family: 'oldschool'; /*a name to be used later*/
    src: url('../fonts/webfonts/Web437_Cordata_PPC-400.woff');
}

body {
    /* font-family: "Lucida Console", "Courier New", monospace; */
    font-family: "oldschool";
    overflow: hidden;
}

.main-img {
    z-index: 3;
    max-width: 80%;
    max-height: 80%;

    display: block;
    margin: auto; 
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.main-img:hover {
    cursor: url("../cursors/cursor_hover.cur"), pointer;
}

.bg-img {
    z-index: 1;
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-filter: blur(50px) brightness(0.3);
    -moz-filter: blur(50px) brightness(0.3);
    -o-filter: blur(50px) brightness(0.3);
    -ms-filter: blur(50px) brightness(0.3);
    filter: blur(50px) brightness(0.3);
    transform: scale(2); 
}

img {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
}