/* ID selectors */

/* CLASS SELECTORS */
.allsections{
  padding: 10px;
  background-color: rgba(255, 0, 0, 0);
}
.btn:hover{
  filter: brightness(200%);
}
.btn.btn-dark{
  margin:3px;
}
.centered{
  text-align: center;
}
.challenge{
  color: deepskyblue;
  animation-name: glow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.edubox{
  margin: 5px auto;
  height: 170px;
  border: 1px solid white;
  border-radius: 10px;
}
@media (max-width:369px){
  html{
    font-size:14px;
  }
}
@media (max-width:700px){
  .edubox{
    width:90%;
  }
}
@media (min-width:701px) and (max-width:1300px){
  .edubox{
    width:49%;
  }
}
@media (min-width:1301px) {
  .edubox{
    width:32%;
  }
}
.eduicon{
  height: 90px;
  margin: 30px 5px 30px 5px;
  float: left;
  background-color: white;
  border-radius: 100%;
}
.edutext{
  text-align: right;
  margin-top:10px;
}

.link{
  width: 15px;
  display: inline;
  animation-name: flash;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}
.nav-link {
  color: white;
}
.allsections{
  width: 100%;
  margin: 0;
  padding: 0;
}
.section{
  width: 95%;
  scroll-margin-top: 100px;
  margin: 0 auto;
  padding: 0;
}

/* ELEMENT SELECTORS */
a,h1,h2{
  color:#138c00;
  text-decoration: none;
}
a:hover{
  filter: brightness(200%);
}
b{
  color:blueviolet;
}
body{
  background-color: rgb(0, 0, 0);
  color:white;
  font-family: 'Gabriela', serif;
  font-size:1rem;
  scroll-behavior: smooth;
}
h1,h2{
  filter:brightness(200%)
}
code{
  color:deeppink;
}
