@font-face {
    font-family: 'Minecraft';
    src: url('../fonts/Minecraftia.ttf') format('truetype');
}

* {
    font-family: 'Minecraft', monospace;
}

body {
    background: #000000;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}

button {
    width: 50px;
    height: 50px;
    margin: 5px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.section {
    background: #222;
    border-color: red;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 0 50px red;
    border: 1px solid red;
    max-width: 800px;
}

.navbar {
    background: #222;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 10px;
    box-shadow: 0 0 50px red;
    border: 1px solid red;
}

.linkButton {
    width: auto;
    height: auto;
}

.header {
    display: flex;
}

.row {
    display: flex;
    justify-content: center;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

label.header {
    color: red;
}

.textField {
    color: white;
}