* {
  margin: 0px;
  padding: 0px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: large;
  font-weight: bold;
}

body {
  background-color: black;
}

nav {
  position: fixed;
  background-color: #1b1b1b;
  color: white;
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: 45% 55%;
      grid-template-columns: 45% 55%;
  padding: 0% 0%;
  text-transform: uppercase;
  overflow: hidden;
}

nav .left {
  text-align: center;
  padding: 5% 0%;
}

nav .left .nav-heading {
  font-size: 50px;
  margin-top: 20px;
  margin-left: 10px;
  -webkit-animation: colorchange 10s infinite alternate;
          animation: colorchange 10s infinite alternate;
}

@-webkit-keyframes colorchange {
  0% {
    color: chartreuse;
  }
  10% {
    color: violet;
  }
  20% {
    color: indigo;
  }
  30% {
    color: brown;
  }
  40% {
    color: green;
  }
  50% {
    color: yellow;
  }
  60% {
    color: orange;
  }
  70% {
    color: brown;
  }
  80% {
    color: floralwhite;
  }
  90% {
    color: hotpink;
  }
  100% {
    color: white;
  }
}

@keyframes colorchange {
  0% {
    color: chartreuse;
  }
  10% {
    color: violet;
  }
  20% {
    color: indigo;
  }
  30% {
    color: brown;
  }
  40% {
    color: green;
  }
  50% {
    color: yellow;
  }
  60% {
    color: orange;
  }
  70% {
    color: brown;
  }
  80% {
    color: floralwhite;
  }
  90% {
    color: hotpink;
  }
  100% {
    color: white;
  }
}

nav .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
  text-transform: uppercase;
}

nav .right #a_size {
  width: 130px;
}

nav .right #a_speed {
  width: 130px;
}

nav .right #new {
  background-color: transparent;
  border: none;
  outline: none;
  color: white;
  text-align: center;
  padding: 14% 0% 0% 0%;
  font-size: 20px;
  margin-left: 200px;
  padding-top: 5px;
  text-transform: uppercase;
}

nav .right #new:hover {
  cursor: pointer;
  border-radius: 20px;
  background-color: yellowgreen;
  color: black;
}

nav .right .algos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (16.66667%)[6];
  grid-template-columns: repeat(6, 16.66667%);
  place-content: center;
  padding: 2% 0%;
  margin-right: -30px;
}

nav .right .algos button {
  background-color: transparent;
  border: none;
  color: white;
  outline: none;
  padding: 5% 0%;
  font-size: large;
  text-transform: uppercase;
}

nav .right .algos button:hover {
  background-color: aqua;
  cursor: pointer;
  color: black;
  border-radius: 20px;
}

nav .right .algos .butt_locked {
  background-color: transparent;
  cursor: pointer;
}

nav .right .algos .butt_locked:hover {
  background-color: transparent;
  cursor: default;
  color: white;
}

nav .right .algos .butt_selected {
  background-color: white;
  color: black;
}

nav .right .algos .butt_selected:hover {
  background-color: white;
  cursor: default;
  border-radius: 0px;
  color: black;
}

nav .right .algos .butt_unselected:hover {
  background-color: aqua;
  cursor: pointer;
  border-radius: 20px;
}

section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5% 90% 5%;
      grid-template-columns: 5% 90% 5%;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 100px;
}

section #Info_Cont1 {
  padding: 20%;
}

section #array_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60vh;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  z-index: -100;
}

section #Info_Cont2 {
  padding: 20%;
}

article {
  height: 500px;
  background-color: PowderBlue;
  margin-left: 200px;
  margin-right: 200px;
  border-radius: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 30% 60% 10%;
      grid-template-rows: 30% 60% 10%;
  text-transform: capitalize;
  overflow: auto;
}

article #description {
  text-align: center;
  padding-top: 20px;
  overflow: hidden;
}

article #description #demo {
  font-size: 50px;
  text-transform: initial;
}

article #info #left {
  float: left;
  width: 50%;
  padding-right: 20px;
  padding-left: 20px;
  text-transform: initial;
  overflow: hidden;
  font-weight: bold;
}

article #info #left p {
  font-size: larger;
}

article #info #right {
  border-left: 5px solid black;
  float: right;
  overflow: auto;
  width: 40%;
  font-weight: lighter;
  text-transform: initial;
  padding-left: 40px;
}

article #info #right h1 {
  font-weight: 900;
  font-size: x-large;
}

article #info #right p, article #info #right a {
  padding-top: 20px;
  font-size: large;
  font-weight: 600;
}

footer {
  height: 80px;
  margin: 1% 1%;
  background-color: #B030B0;
  margin-top: 100px;
}

footer p {
  font-size: 30px;
  text-align: center;
  padding-top: 15px;
}

footer a {
  font-size: 35px;
  color: #000;
}

.hide {
  display: none;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  nav{
    position: relative;
    display: contents;
  }
  nav .right .algos #he{
    margin-left: 500px;
  }
  article {
    margin-left: 0px;
    margin-right: 0px;
    overflow: auto;
    height: 700px;
  }
  nav .right #new{
    margin-left: 100px;
  }
  nav .right #a_size{
    margin-bottom: 50px;
  }
  nav .right .algos{
    display: inline-block;
  }
  section{
    padding-top: 2px;
  }
  article #info #left, article #info #right {   
    width: 100%;
    padding: 0;
    overflow: auto;
  }
}

/*# sourceMappingURL=s.css.map */
