
:root{

    --col-green: #689d71;
    --col-gold: #eec66c;
    --col-btn: #5d8c64;

}

*{
    touch-action: manipulation; /* disbale double tap zoom */
    font-family: title;
    font-weight: normal;
    margin: 0;
    user-select: none;
    font-size: 1vw;
}

body{
    background-color: var(--col-green);
}


@font-face {
  font-family: title; /* set name */
  src: url('fonts/title.ttf'); /* url of the font */
}