
@font-face {
    font-family: openSansBold;
    src: url(../fonts/OpenSans-Bold.ttf);
}

body {
    margin: 0;
    padding: 0;
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 10vw;
    padding-right: 10vw;

    background-image: url(../images/bg.jpg);
    background-size: cover;

    font-family: openSansBold;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.player_row {
    background-color: grey;
    margin-bottom: 2vw;
    margin-top: 1vw;
}

.header_logo {
    height: 6vh;
}

.logo_container {
    display: flex;
}

.live_status_container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.live_status_circle {
    background-color: #ff0000;
    width: 1em;
    height: 1em;
    border-radius: 1em;
}

.live_status_container p {
    color: white;
    font-weight: bold;
    font-size: 1em;
    font-family: openSansBold;
}

.question_row textarea {
    width: 100%;
    background-color: #ffffff;
    color: #003d72;
    border: none;
    margin: 0px;
    font-family: openSansBold;
    font-weight: bold;
}

.question_row button {
    width: 100%;
}

button {
    background-color: #00b9e4;
    color: #ffffff;
    border: none;
    margin: 0px;
    font-family: openSansBold;
    font-weight: bold;
    font-size: 1.5vw;
}

::placeholder { 
    color: #00b9e4;
    opacity: 1; 
    font-weight: bold;
    font-family: openSansBold;
}
  
:-ms-input-placeholder { 
    color: #00b9e4;
    font-weight: bold;
    font-family: openSansBold;
}
  
::-ms-input-placeholder { 
    color: #00b9e4;
    font-weight: bold;
    font-family: openSansBold;
}

@media only screen and (min-width: 768px) {
    .player_row {
        flex: 1;
    }

    .container {
        justify-content: center;
    }

    .question_row {
        height: 8vh;
    }

    .question_row textarea {
        height: 100%;
    }

    .question_row button {
        height: 100%;
    }
} 

@media only screen and (max-width: 767px) {
    .player_row {
        height: 35vh;
    }

    .question_row {
        height: 60vh;
        display: flex;
    }

    .question_row textarea {
        margin-bottom: 1vh;
    }

    .question_textarea {
        height:20vh;
    }

    .question_row button {
        margin-left: 30%;
        width: 40%;
        font-size: 4vw;
    }

    .login-btn {
        width: 40%;
        font-size: 4vw;
    }

    .login_row input {
        width: 90%;
    }
} 

.login_row > input {
    width: 100%;
}

.login_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.login_images {
    justify-content: center;
    margin-bottom: 15px;
}

.login-btn {
    margin-top: 15px;
}