@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-color: #16171a;
    background-image: url('../assets/warpbg.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-logo{
    animation: Float 4s ease-in-out infinite;
    animation-delay: -0.4s;
}

#section1{
    background-image: url('../assets/demons/obelisk1.gif');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 700px;
    margin: 5px;
    animation: Float 4s ease-in-out infinite;
    animation-delay: -0.8s;
}
#section1 div{
    height: 70%;
    width: 70%;
    animation: Float 4s ease-in-out infinite;
    animation-delay: -0.3s;
}
#section1 div img{
    height: 62px;
    width: 172px;
}

.container-section p{
    padding: 5px;

}

.container-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-nav{
    background-color: #16171a;
    display: flex;
    width: 1300px;
    justify-content: center;
    align-items: center;
    margin: 10px;
    border: white solid 2px;
}

#demon1{
    position: absolute;
    top: 42%;
    left: 12%;
    z-index: -99;
    animation: Float 4s ease-in-out infinite;
}

#demon2{
    position: absolute;
    top: 42%;
    right: 5%;
    z-index: -99;
    animation: Float 4s ease-in-out infinite;
    animation-delay: -0.2s;
}

@keyframes Float {
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
}

