@font-face {
    font-family: "Neuething Sans";
    src: url("/static/neuething-sans-regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #39383d;
    color: #fff;
    font-family: 'Neuething Sans';
}

h1, h2 {
    display: none;
}

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

.box {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #f9461c; */
    /* border-radius: 5px; */
    padding: 10px;
    justify-content: center;
    max-width: 500px;
    /* height: 400px; */
    /* background: steelblue; */
}

.box img {
    margin: 20px;
    width: 460px;
    max-height: 100%;
    margin-bottom: 2em;
}

.user-data {
    display: none;
}

.logged-in .user-data {
    display: block;
}

.logged-in .login-form {
    display: none;
}

.button {
    display: flex;
    justify-content: center;
    min-width: 25%;
    margin: 0 auto;
    text-align: center;
    background-color: #f9461c;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 10px;
    border: 0;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 2em;
}

.link {
    color: #f9461c;
}

p {
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 2em;
}

.steam-sign-in {
    display: block;
    margin: 0 auto;
    width: 180px;
    height: 35px;
    background-image: url('/static/steamsignin.png');
    cursor: pointer;
}

.table {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 2em;
}

.disconnect-twitch {
    display: none;
}

.twitch-connected .connect-twitch {
    display: none;
}

.twitch-connected .disconnect-twitch {
    display: block;
}