
@font-face {
    font-family: 'mypolice';
    src: url('font/Mina/Mina-Regular.ttf');
}
body{
    display : flex;
    background-color : rgb(7, 7, 7);
    cursor: none;
    overflow : hidden;
    margin : 0;
}
html{
    cursor : none;
    font-size: 150%;
    font-family: 'mypolice';
    transition : 0.6s;
    transition-timing-function: ease;
}
#pond{
    cursor : none;
    height : 100%;
    width : 100%;
}
canvas{
    background-color : rgb(58, 59, 60);
    width : 1300;
    height : 650;
}
#intro
{
    background-color: rgba(0, 0, 0, 0.5);
    height : 100%;
    width : 100%;
    z-index : 10000;
    position : absolute;
    display : flex;
    align-items: center;
    justify-content: space-around;
    cursor: default;
}
#intro.hide
{
    display : none;
    opacity : 0;
    animation : fade 3s ease;
    transition : 0.4s;
}
@keyframes fade 
{
    0%{
        opacity : 50%;
    }
    15%{
        opacity : 100%;
    }
    85%{
        opacity : 100%;
    }
    100%{
        opacity : 0%;
    }
}
#intro:hover ~ #cursor
{
    background-color: #000;
}
#message
{
    background-color: #fff;
    height : 50%;
    width : 50%;
    display : flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding : 80px;
    border : 2px solid black;
    border-radius: 10px;
    text-align: center;
    line-height: 200%;
}