@font-face {
    font-family: 'Classic Console Neue';
    src:  url('fonts/clacon2.woff2') format('woff2')
}

#clock {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 20px;
    background-color: #9eefee;
    padding: 5px 5px 1px 5px;
    text-align: center;
    visibility: hidden;
    animation: appear 0s steps(1) 3s forwards;
}

#dragborder {
    border: 4px solid red;
    box-sizing: border-box;
    position: absolute;
    cursor: url('../img/drag.svg'), auto;
    visibility: hidden;
}


@keyframes appear {
    to {
      visibility: visible;
    }
 }

@keyframes unfocus {
    to {
        border-color: #9eefee;
    }
}
