﻿html, body {
    height: 100%;
}

body {
    margin: 0;
}

.flex-container {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-element {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}
.logo {
    /*height: 378px;
    width: 378px;*/
    width: 500px;
    margin: 40px auto 40px auto;
}
    .logo.small {
        /*height: 252px;
        width: 252px;*/
        width: 300px;
        margin: 20px auto 20px auto;
    }

.discord-link {
    position: absolute;
    bottom: 8px;
    left: 8px;
}

    .discord-link img {
        width: 20%;
        /*margin-top: 40px;*/
    }
.center {
    margin: auto;
    width: 50%;
    padding: 10px;
}
.row {
    width: auto;
}

.button-row {
    text-align: center;
    margin-bottom: 16px;
}

.form-control.report {
    height: 75px;
}
.bug-report .control-label {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
}
.page-title {
    font-family: 'Bangers', cursive;
    text-align: center;
    font-size: 48px;
}
    .page-title.thanks {
        margin-top: 20px;
        font-size: 52px;
        color: #7199b8;
    }
.flex-item {
    padding: 5px;
    width: 20px;
    height: 20px;
    margin: 10px;
    line-height: 20px;
    color: white;
    font-weight: bold;
    font-size: 2em;
    text-align: center;
}
.flex-item.logo {
    height: 492px;
    margin-bottom: 20px;
}
.form-center {
    margin: 0 auto;
    width: 400px;
}
.gameButton {
    background-color: #44c767;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    border: 1px solid #18ab29;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    padding: 6px 12px;
    text-decoration: none;
    text-shadow: 0px 0px 0px #737373;
}
    .gameButton.submit {
        font-size: 24px;
        padding: 8px 24px;
    }
    .gameButton:hover {
        background-color: #5cbf2a;
    }

    .gameButton:active {
        position: relative;
        top: 1px;
    }

    .gameButton.blue {
        background-color: #7199b8;
        border: 1px solid #4c87b5;
    }
        .gameButton.blue:hover {
            background-color: #4e8bba;
        }

    .gameButton.green {
        background-color: #44c767;
    }
        .gameButton.green:hover {
            background-color: #5cbf2a;
        }

    .gameButton.orange {
        background-color: #f5b84f;
        border: 1px solid #f59b0a;
    }
        .gameButton.orange:hover {
            background-color: #f5a82c;
        }

    .gameButton.red {
        background-color: #c2294a;
        border: 1px solid #bd0a30;
    }

        .gameButton.red:hover {
            background-color: #c7002b;
        }

    .gameButton.disabled {
        background-color: #737373;
        border: 1px solid #888888;
        text-decoration: line-through;
    }

        .gameButton.disabled:hover {
            background-color: #626262;
        }


.invalid {
    border-color: #dc3545 !important;
    animation: shake 0.2s ease-in-out 0s 2;
}

@keyframes shake {
    0% {
        margin-left: 0rem;
    }

    25% {
        margin-left: 0.5rem;
    }

    75% {
        margin-left: -0.5rem;
    }

    100% {
        margin-left: 0rem;
    }
}