@font-face {
    font-family: 'MinecraftRegular-Bmg3';
    src: url('./MinecraftRegular-Bmg3.otf') format('opentype');
    /* Add additional font properties here if needed */
}

body{
    background-color: rgb(50, 50, 50);
    height: 100vh;
    width: 100vw;
    margin: 0;
    overflow: hidden;

}
body * {
    font-family: 'MinecraftRegular-Bmg3', sans-serif;
}
span{
    background: url("https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_54-256.png");

    position: absolute;
    background-size: cover;
    cursor: pointer;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    animation: animate 12s linear;
    pointer-events:initial;

}

@keyframes animate {
    0%{
        transform: translate(-50%, -50%);
        opacity: 1;
        filter: hue-rotate(0);
    }
    100%{
        transform: translate(-50%, -3000%);
        opacity: 0;
        filter: hue-rotate(1300deg);
    }
}






particle {
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
  }








.warning{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: black;

    z-index: 999;

    font-size: 120px;
    font-family: "Minecraft";
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;

    transition: all 500ms;

}
.warning p{
    background: linear-gradient(0deg, #40c9ff, #e81cff);
    background-clip: text;
    -webkit-text-fill-color: transparent;

}