html, body {
    background-color: black;
    font-family: main;
    color: white;
    cursor: url(../src/cursor.png), auto;
    margin: 0;
}

@font-face {
    font-family: main;
    src: url(../src/bitern-mono.otf);
}

button {
    font-family: main;
    color: lightgray;
    background-color: #3D3D3D;
    border: none;
    box-shadow: 6px 6px #212121;
    cursor: url(../src/pointer.png), auto;
    padding: 6px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: medium;
}

button:hover {
    color: orangered;
    position: relative;
    top: -5px;
}

#top {
    width: 100%;
    background-color: #2E2E2E;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 4px ridge dimgray;
}

a {
    color: orangered;
    cursor: url(../src/pointer.png), auto;
}

a:hover {
    color: white;
    background-color: orangered;
}

.box {
    padding: 10px;
    width: fit-content;
    background-color: dimgray;
    box-shadow: 20px 20px #212121;
}

.center {
    display: flex;
    justify-content: center;
}

#main {
    width: 50%;
    height: 50vh;
    margin-top: 30px;
    position: relative;
    top: 5px;
    left: 10px;
    content: ' ';
    border-top: 3px double #fff;
    border-bottom: 3px double #fff;
    border-left: 5px double #fff;
    border-right: 5px double #fff;
    z-index: 0;
}

hr {
    margin-left: 5px;
    margin-right: 5px;
}

.title { font-size: xx-large; }

#mainTitle {
    text-align: center;
    background-color: orangered;
    box-shadow: 14px 14px black;
    width: fit-content;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    top: -1.5rem;
}

.text-center { text-align: center; }

.button-a { text-decoration: none; }

textarea {
    resize: none;
}