html, body {
    background-color: black;
    font-family: "Courier New" ;
    height: 95%;
    color: rgb(228, 228, 228);
}

.container-y {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.container-x {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#textElement {
    font-size: xx-large;
    text-shadow: 0px 0px 20px rgb(182, 182, 182);
    text-align: center;

    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

a {
    color: rgb(221, 221, 221);
    text-decoration: none;
}

span {
    color: rgb(151, 151, 151);
}

#textElement:hover {
    color: white;
    cursor: pointer;
}
