
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  
}
div,section,ul,nav,p{
  background: rgba(0,0,0,0.2);
}
.nav-heading{
  font-weight: bolder;
  font-size: 1.7em;
  text-transform: uppercase;
}
html,body{
  height: 100%;
  width: 100%;
  color: aliceblue;
}
.bg-image {
  position: absolute;
  /* The image used */
  background-image: url("../background.jpg");
  width: 100%;
  z-index: -1000000;
  /* Add the blur effect */
  filter: blur(10px);
  -webkit-filter: blur(10px);

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f023aa6;
  box-shadow: 1px 0px 1px 0px rgba(0,0,0,0.2);
  width: 100%;
  height: 80px;
  color: white;
}


.btn{
  background-color: #8153bd;
  color: white;
  border: none;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}


.algo-item button{
  background-color: #8153bd;
  color: white;
  border: none;
  padding: 10px;
  text-align: center;
  font-size: 17px;
  margin: 2px 2px;
  cursor: pointer;
  border-radius: 5px;
}




section {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 60% 20%;
      grid-template-columns: 20% 60% 20%;
}

section #Info_Cont1 ul {
  padding: 10%;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  
}
.bars{
  border-radius: 50px 50px 50px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:70%;
  color: black;
}
section #array_container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50vh;
  align-items: center;
}
.sort-info{
  padding: 10px;
}
.sort-info-value{
  color:yellow;
  margin:3px;
  font-size:20px;
}
section #Info_Cont2 {
  padding: 20%;
}

.hide {
  display: none;
}
.sort-info{
  width: 100vw;
  display: flex;
  align-items:flex-end;
  justify-content: space-between;
  flex-direction: row;
}

@media (max-width: 480px)
{
  section {
    display: -ms-grid;
    display: grid;
    padding: 5%;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;

  } 
  section #array_container {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 70vw;
    align-items: baseline;
  }
  section #Info_Cont1 ul {
    padding: 0%;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    
  }
  
}

/* @media (min-width: 481px) and (max-width: 1250px)//Tablets
{

}

@media (min-width: 1251px)//Laptops and up
{

} */
