*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background-color: #f9fbfd;
}
#navBar
{
  background-color: white;
  vertical-align: middle;
  width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
}
#scores
{
 float: left;
}
#timerTag
{
 float: right;
}

.wrapper {
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
}

header {
  text-align: center;
  padding: 20px;
  padding-top: 0px;
  color: hsl(206, 17%, 28%);
}

.container {
  background-color: hsl(0, 0%, 100%);
  border-radius: 5px;
  border-width: 1px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;
  color: hsl(206, 17%, 28%);
  font-size: 18px;
  margin: 0 auto;
  max-width: 800px;
  padding: 5px 10px;
}

.topPart::after {
  content: " ";
  display: block;
  width: 100%;
  background: #e7e9eb;
  height: 2px;
}

#QuizId{
  display:flex;
  flex-wrap: wrap;
  float: left;
  margin-left: -30px;
  padding: 0;
  overflow: hidden;
}
.btnAnswer {
  width: 100%;
  background-color: darkmagenta;
  border-radius: 25px;
  color: white;
  text-decoration-style: double;
  text-align: left;
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.NoteBelow {
  width: 100%;
  color: lightgray;
  text-decoration-style: dotted;
  font-style: oblique;
  text-align: left;
  margin: 0;
  margin-top: 10px;
}
.center-align {
  text-align: center;
}
.bottomPart {
  text-align: center;
}

.bottomPart::before {
  content: " ";
  display: block;
  width: 100%;
  background: #e7e9eb;
  height: 2px;
}

.bottomPart::after {
  content: " hello";
  color: white;
  display: block;
  clear: both;
}

.btn {
  border: none;
  background-color: rgb(105, 37, 114);
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px
    0px;
  color: hsl(0, 0%, 100%);
  display: inline-block;
  font-size: 22px;
  line-height: 22px;
  margin: 16px 16px 16px 20px;
  padding: 14px 34px;
  text-align: center;
  cursor: pointer;
}

.smButton {
  font-size: 10px;
  background: #5b0ab8;
  color: white;
  margin: 0;
}

.float-right {
  float: right;
}

.inputstyle {

  border-radius: 5px;
  border-width: 1px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;
  color: hsl(206, 17%, 28%);
  font-size: 1.5rem;
  margin-right: 10px ;
  padding: 10px 10px;

}

@media (max-width: 690px) {
  .btn {
    font-size: 1rem;
    margin: 16px 0px 0px 0px;
    padding: 10px 15px;
  }

  .inputstyle {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .btn {
    font-size: 0.8rem;
  }
  .inputstyle{
    flex-wrap: wrap;
  }
}
