.text-color {
  color: #0059C1;
}

.center-block {
  display: block;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #8B29D9;
  border: 2px #8B29D9 solid;
  border-radius: 7px;
  color: #fff;
}

.center-block:hover {
  display: block;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  border: 2px #8B29D9 solid;
  border-radius: 7px;
  color: #8B29D9;
}
.form-block{
  display: block;
  text-align: left;
  background: #fff;
  border: 1px #8a29d967 solid;
  padding: 40px;
  border-radius: 12px;
  
}

a:hover {
text-decoration: none;
}
.footer {
  position: fixed;
  padding: 10px 10px 0px 0px;
  bottom: 0;
  width: 98%;
  height: 40px;
  text-align: center;
  color: #fff;
}

.footer:hover {
  position: fixed;
  padding: 10px 10px 0px 0px;
  bottom: 0;
  width: 98%;
  height: 40px;
  text-align: center;
  color: #fff;
}

/* The side navigation menu */
.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #f1f1f1;
  position: fixed;
  height: 100%;
  overflow: auto;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;
}

/* Active/current link */
.sidebar a.active {
  background-color: #593196;
  color: white;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #593196;
  color: white;
}

.solved{
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  background: green;
  color: ivory;
  width: 30px;
  height: 30px;
  border-radius: 40px;
}
.heading-que{
  text-align: center;
  padding-top: 7px;
  padding-bottom: 10px;
  background: rgb(72, 4, 149);
  color: ivory;
  border-radius: 40px;
}
.unsolved{
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  background: rgb(128, 0, 0);
  color: ivory;
  width: 30px;
  height: 30px;
  border-radius: 40px;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 1000px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}

/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
}