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

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

#background {
    background-color: black;
}

#main {
    border: 4px ridge white;
    z-index: 1;
    position: absolute;
    background-color: #474747;
    color: white;
    font-family: main;
    width: 50%;
    text-align: center;
    margin-top: 2rem;
    min-height: 75vh;
}

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

#avatar {
    border: 4px ridge white;
    float: left;
    position: relative;
    left: -2%;
    transform: rotateZ(10deg);
    position: relative;
    z-index: 100;
}

#top {
    width: fit-content;
    position: absolute;
    top: -1%;
    left: -1%;
}

#zodajam {
    font-size: xx-large;
    color: green;
    background-color: black;
    border-radius: 5px;
    padding: 2px;
    display: inline-block;
    position: sticky;
    z-index: 100;
    transform: rotateZ(-5deg);
    text-decoration: none;
}

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

#mainTitle {
    text-align: center;
    position: relative;
    z-index: 100;
}

#console {
    width: 100%;
    background-color: #171717;
    min-height: 15rem;
    position: absolute;
    bottom: 0;
    border-top: 4px ridge white;
    text-align: start;
    margin-top: 15px;
}

#consoleInput {
    background: none;
    outline: none;
    border: none;
    color: lime;
    font-family: main;
    font-size: medium;
    width: 80%;
}

#chatbox {
    border: 4px ridge white;
    margin-top: 7rem;
}

button {
    background-color: dimgray;
    box-shadow: 6px 6px black;
    font-family: main;
    padding: 5px;
    color: white;
    cursor: url(../src/pointer.png), auto;
    border: none;
}

#log-out { margin: 5px; }