@font-face {
    font-family: 'Moon 2.0 Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Moon 2.0 Regular'), url('Moon2.0-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Moon 2.0 Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Moon 2.0 Bold'), url('Moon2.0-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Moon 2.0 Light';
    font-style: normal;
    font-weight: normal;
    src: local('Moon 2.0 Light'), url('Moon2.0-Light.woff') format('woff');
}

* {
    font-family: 'Moon 2.0 Regular';
    font-weight: normal;
}

body {
    text-align: center;
    font-size: 80px;
}

nav {
    text-align: right;
    font-size: 40%;
    margin-top: 1%;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover {
    cursor: pointer;
    text-decoration: none;
    border: 3px solid black;
    background-color: rgb(231, 231, 231);
}

h3 {
    margin-top: 1.5%;
    margin-bottom: 1.9%;
}

#matrix-container {
    display: flex;
    justify-content: center;
    margin-top: 1%;
}

table {
    padding: 2%;
    font-size: 80px;
    text-align: center;
    table-layout: fixed;
    width: 40%;
    border: 3px solid black;
    border-radius: 5px;
    border-spacing: 15px;
    border-collapse: collapse;
}

.matrix-input {
    padding: 15px;
    border: 2px solid black;
}

.matrix-input:hover {
    cursor: pointer;
    background-color: rgb(231, 231, 231);
}

.noselect {
    -ms-user-select: none;
    user-select: none;
}

#time {
    font-size: 50%;
    margin-top: 1.5%;
    margin-bottom: 0.75%;
}

button {
    display: none;
    margin-top: 1%;
    padding: 1%;
    font-size: 30px;
    border-radius: 8px;
    background-color: rgb(231, 231, 231);
}

button:hover {
    cursor: pointer;
    background-color: rgb(209, 209, 209);
}