/* Base container */
body {
    background-color: rgb(47, 47, 47);
    color: whitesmoke;
    cursor: url("./Cursors/default.png") 0 0, auto;
}

/* Classes */
.orbitron-font {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.lilita-one-font {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.cascadia-mono-font {
  font-family: "Cascadia Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.spacer {
    height: 100vh;
}

.hidden-text {
    color: rgb(47, 47, 47);
    font-family: "Cascadia Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/* Elements */
h1 {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

p {
    font-family: "Cascadia Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

hint {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

paragraph {
    display: block;
    margin: 5px;
}

button {
    cursor: url("./Cursors/pointer.png") 16 16, pointer;
    color: rgb(52, 52, 52);
    background-color: rgb(180, 180, 180);
    transition: all 0.2s ease;
}
button:hover {
    color: whitesmoke;
    background-color: rgb(110, 110, 110);
}
button:focus {
    color: whitesmoke;
    background-color: rgb(75, 75, 75);
    cursor: url("./Cursors/focus.png") 11 10, pointer;
}

input,
textarea {
    cursor: url("./Cursors/text.png") 0 0, text;
}

a {
    color: whitesmoke;
    text-decoration: underline;
    cursor: url("./Cursors/focus.png") 11 10, pointer;
}

a:visited {
    color: lightgray;
}

a:hover {
    color: white;
}

/* Target attribute */
a[href*="Level"] {
    cursor: url("./Cursors/a5rx.png") 0 0, pointer;
}
