.searchbar input[type=text] {
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 17px;
  border-radius: 100px;
  background-color: #333;
  color: #fafafa;
}



.searchbar input[type=submit] {
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 17px;
  background-color: #333;
  color: #fafafa;
}


/* Scrollbar Colour / selection */
	/* Firefox */
    * {
        scrollbar-color: #ff0000 transparent;
      }
    
    /* Chrome, Edge, and Safari */
      *::-webkit-scrollbar {
        width: 10px;
        background: transparent;
      }
      
    
      *::-webkit-scrollbar-track {
        background: transparent;
      }
    
      *::-webkit-scrollbar-thumb {
        background-color: #ff0000;
        border-radius: 20px;
      }
      *::-webkit-scrollbar-thumb:hover {
        background-color:rgb(237, 0, 0);
        border-radius: 20px;
      }
    ::selection {
        background-color: #ff0000;
        color: #fafafa;	
    }
    /*--------------------------------------------------------------
    # General
    --------------------------------------------------------------*/
    body {
      font-family: "Open Sans", sans-serif;
      color: #212212;
      background-color: #141518;
    }
    
    a {
      color: #ff0000;
      text-decoration: none;
    }
    
    a:hover {
      color: #ff0000;
      text-decoration: none;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: "Raleway", sans-serif;
    }
    
    /*--------------------------------------------------------------
    # Back to top button
    --------------------------------------------------------------*/
    body {
      overflow: overlay;
    }
    .back-to-top {
      position: fixed;
      visibility: hidden;
      opacity: 0;
      right: 15px;
      bottom: 15px;
      z-index: 996;
      background: #ff0000;
      width: 40px;
      height: 40px;
      border-radius: 50px;
      transition: all 0.4s;
    }
    .back-to-top i {
      font-size: 28px;
      color: #fff;
      line-height: 0;
    }
    .back-to-top:hover {
      background: rgb(237, 0, 0);
      color: #fff;
    }
    .back-to-top.active {
      visibility: visible;
      opacity: 1;
    }
    