﻿/* Mobile First */

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

a {
    color: #007bff;
    text-decoration: none;
}

.navbar {
    background-color: #007bff;
    border-bottom: 0.2rem solid #0056b3;
}

.navbar-brand img {
    width: 40px; 
    height: auto;
}

.navbar-nav .nav-link {
    font-size: 16px;
}

.navbar-nav .nav-link.active {
    color: #ffcc00; 
    font-weight: bold;
}

#quizMain {
    margin: auto;
    margin-top:5rem;
    max-width: 80%;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
    
}

#aboutQuizContainer {
    margin-top: 1rem;
}

#aboutQuizBox {
    background: #ffffff;
    padding: 1rem;
    border: 0.2rem solid #dee2e6;
}

#quizTitle{
    text-align: center;
    margin-bottom: 2rem;
}

.input-group{
    margin-bottom: 0.1rem;
}

.input-group-text {
    color: black;
    width: 6.3rem;
    height: 2.5rem;
    display: block;
    align-items: center;
    justify-content: center;
}

.list-group-item{
    background-color: #fff;
    border: 0.2rem solid #dee2e6;
    padding-top: 2rem;
    padding-bottom: 2rem;
    
    
}

#userInfoContent {
    display: flex;
    margin-bottom: 1rem;
    margin-top: 1rem;
}


.badge{
    background-color: #007bff;
}

.form-select{
    margin-top: 0.5rem;
    border-radius: 0.25rem;
}

.form-control {
    height:2.5rem;
    border-radius: 0.25rem;
}

.btn-primary{
    background-color: #0d6efd;
    border-color: #0d6efd;
    display: block;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-primary:hover{
    background-color: #0b5ed7;
}

#footerBar {
    border-top: 0.2rem solid #dee2e6;
    background-color: #007bff;
    color: #fff;
}

footer p{
    font-size: 1rem;
    text-align: center;
}

/* Desktop */
@media only screen and (min-width: 44rem) {


    #quizTitle{
        margin-top: 1rem;
    }


}



