body{
    background-size: 100%;
    background-repeat: no-repeat;
    background: linear-gradient(45deg, #272727, #000000);
    background-size: 100% 900%; 
}

h1{
    font-family: 'poppins';
    font-weight: 900;
    text-align: center;
    font-size: 3em;
    line-height: 2px;
    color: #ffffff;
    margin-bottom: 75px;
}

p{
    font-family: 'poppins';
    text-align: center;
    line-height: 2px;
    color: #bb86fc;
    margin-top: 50px;
}

div {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

img{
    width: 350px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-transform:scale(1);transform:scale(1);
    transition:all .3s ease-in-out;
}


img:hover {
    box-shadow: 0 0 2px 1px #bb86fc;
    border-radius: 23px;
    -webkit-transform:scale(1.05);transform:scale(1.05);
    transition:all .3s ease-in-out;
    
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 120px;
}

.container {
    overflow: hidden;
    padding-top: 10px;
  }
  
  .filterDiv {
    display: none; /* Hidden by default */
  }
  
  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }
  
  /* Style the buttons */
  .btn {
    width: 160px;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    font-family: 'poppins';
    font-weight: 700;
    border: none;
    outline: none;
    padding: 12px 16px;
    border: 1px solid #272727;
    color: #ffffff;
    background: rgb(27,27,27);
    background: linear-gradient(45deg, rgba(27,27,27,1) 0%, rgba(25,25,25,1) 100%);
    box-shadow: 0 0px 8px 0 rgba(0,0,0,0.5);
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 30px;
  }
  
  /* Add a light grey background on mouse-over */
  .btn:hover {
    color: #ffffff;
    background: rgb(187,134,252);
    background: linear-gradient(45deg, rgba(187,134,252,1) 0%, rgba(73,0,163,1) 100%);
    -webkit-transform:scale(1.05);transform:scale(1.05);
    transition:all .2s ease-in-out;
  }
  
  /* Add a dark background to the active button */
  .btn.active {
    color: #ffffff;
    background: rgb(187,134,252);
    background: linear-gradient(45deg, rgba(187,134,252,1) 0%, rgba(73,0,163,1) 100%);
  }

  a:link{
    text-decoration: none;
  }

  .specs{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }


/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #bb86fc;
  min-width: 160px;
  border-radius: 15px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  font-family: 'poppins';
  text-align: center;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #9a48fd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}


/*Menu
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #bb86fc;
  transition-duration: .5s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .5s;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  color: #bb86fc;
  font-family: 'Poppins';
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .5s;
}
.menu__item:hover {
  background-color: #CFD8DC;
}

*/