@font-face {
    font-family: 'My font';
    src: url('Luciole-Regular.ttf') format('truetype');
}

html {
    overflow-y: scroll;
    background-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

body {
    overflow: hidden;
    height: 100%;
    /* color: black; */
    font-family: 'My Font';
}

p,
td {
    font-size: 2em;
    font-weight: 400;
    color: white;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    color: #ff9200;
    text-decoration: underline;
}