body {
  font-family: Arial, sans-serif;
  /* background-color: blue; */
}

/* Styling the navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; 
  
}

#quiz-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  border-color: blueviolet;
  margin-top: 130px;
  background-color: burlywood;
  visibility: hidden;
}

/* timer */
#timer{
  visibility: hidden;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 10px;
}

label {
  display: block;
  padding: 10px;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 10px;
  vertical-align: middle;
}

button {
  display: block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #008CBA;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* Start quiz button */
#start-quiz-button{
float: right;
background-color: green;
}

#timer {
  position: fixed;
  top: 120px;
  right: 0;
  padding: 10px;
  background-color: #85bbf1;
  color: rgb(68, 68, 68);
  font-weight: bold;
}

#time-remaining {
  /* CSS styles here */
  color:#fcfcfc
  
}

#welcome-message {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #333;
}
/* #welcome-message{
  text-align: center;
  color: blueviolet;
  margin-bottom: 40;
} */

h6.m-0.mt-4.text-center.text-white.text-capitalize{
  background-color: black;
  height: 40px;
}

/* Adding media queries to make it mobile responsive */
@media only screen and (max-width:93.75%) {
  /* CSS styles for small screens */
}

/* Styling for previousQuestion and NextQuestion buttons */
#next-button {
  float: right;
  padding-left: 35px;
background-color: rgb(97, 88, 180);
}

footer {
  background-color: #1db925;
  color: rgb(68, 68, 68);
  padding: 30px 0;
  width: 100%;
  position: relative;
  margin-top: 50px;
}

.container {
  position: relative;
}
/* media queries to make it mobile responsive */
@media (max-width: 767px) {
  footer {
    padding: 20px 0;
  }
}

.footer h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Social media icon styles */
.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons li:last-child {
  margin-right: 0;
}

.social-icons a {
  color: #333;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
  color: #007bff;
}

/* Font Awesome icon styles */
.fa {
  display: inline-block;
  font-size: inherit;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-github:before {
  content: "\f09b";
}

.fa-linkedin:before {
 
  content: "\f08c";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-instagram:before {
  content: "\f16d";
}

/* styling of the contact information */
.contact-info a {
  color: black;
}

.contact-info b {
  font-weight: bold;
}

/* applying a hover background to the p elements of the contact info */
.contact-info p:hover {
  background-color: #f2f2f2;
}

.col-md-4 {
  text-align: right;
}

.col-md-4 p {
  white-space: nowrap;
  display: inline-block;
}


.navbar a:hover{
  background-color: rgb(203, 186, 216);
}
