@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('https://wallpaperaccess.com/full/3308628.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main {
    color: rgb(33 46 120);
    background-color: rgb(183 183 183 / 0%);
    height: 100vh;
    text-align: center;
}

.main-container {
    /*padding-top: 150px;*/
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main h1 {
    font-size: 90px;
}

@media only screen and (max-width: 600px) {
  .main h1 {
        font-size: 75px;
    }
}


.main h2 {
    font-size:35px;
}

.border-line {
    height: 2px;
    width: 250px;
    margin-top: 10px;
    background-color: rgb(62, 60, 143);
}

.selection-container {
    text-align: center;
    border: 1px solid;
    border-radius: 20px;
    width: 100%;
    padding: 50px;
    margin-top: 120px;
    background-color: rgba(0, 0, 0, 0.4);
}


.user-selection-button button {
    margin: 20px 10px 0 10px;
    padding: 7px;
    border: none;
    border-radius: 10px;    
    width: 200px;
}

.user-selection-button button:hover {
    background-color: rgb(90, 90, 90);
    color: rgb(255, 255, 255);
}

.nav-pills .nav-link {
    color: rgb(190, 190, 190);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: rgb(255, 255, 255);
    background-color: transparent !important;
}

#pills-home {
    align-items: center;
    background-color: rgb(172 163 163 / 70%);
    border: 2px solid;
    border-radius: 20px;
    padding: 40px;
    margin: 100px 0px 40px 0px;
    width: 100%;
}

.quiz-area {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid;
    border-radius: 20px;
    padding: 50px;
    margin: 100px;
}

#add-quiz-button {
    /*float: right !important;*/
    margin: 10px;
}

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

.quiz {
    width: 100%;
    height: auto;
    margin-top: 90px;
    border: 2px solid;
    border-radius: 20px;
    background-color: #354f75;
    padding: 20px;
    overflow: auto;
}

.nav-tabs .nav-link {
    color: rgb(255, 255, 255) !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057 !important;
}

.table-area {
    height: 450px;
    width: 100%;
    overflow-y: auto;
}

.take-quiz-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 10px;
}

.take-quiz-area h3 {
    font-size: 50px;
}

.questions {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    border: 2px solid;
    background-color: rgb(255 255 255 / 79%);
    border-radius: 20px;
    width: 100%;
    height: 670px;
    text-align: left;
    overflow-y: auto;
}

#takeQuiz {
    font-size: 16px;
    width: 150px;
    height: 40px;
    margin-top: 20px;
    border: none;
    color: rgb(70, 70, 70);
    background-color: rgb(210, 210, 210);
    border-radius: 5px;

}

#takeQuiz:hover {
    background-color: rgb(80, 80, 80);
    color: rgb(255, 255, 255);
}

.question {
    margin: 20px 20px 20px 50px;
}

.question p {
    font-size: 20px;
    color: #ff6300;
}

.choices li {
    list-style-type: upper-alpha;
    margin-left: 45px;
    font-size: 16px;
}

#submitAnswer {
    margin-top: 10px;
    width: 200px;
    background: blue;
    margin-bottom: 10px;
}
.col-1{
    max-width: 10.333333% !important;
}
.modal-margin{
    margin-bottom: 20px !important;
}
.search-record{
    margin-bottom: 10px;
}
#timer{
      font-size: 2em;
      font-weight: bold;
      color:red;
    }

