.header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
   
  }
  h1 {
    color: rgb(219, 217, 217);
    
  }
  
  .logo {
    font-size: 35px;
    color: #BB5924;
    text-decoration: none;
    font-weight: 700;
  }
  .navbar a {
    position: relative;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
  }
  
  .navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    width: 0;
    left: 0;
    height: 2px;
    background: #ffffff;
    transition: .3s;
  }
  
  .navbar a:hover::before {
    width: 100%;
  }
  
  .img-fluid {
    max-height: 100%;
    border: rgb(255, 255, 255);
  }
  body{
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(214,198,183,1) 0%, rgba(255,255,255,1) 0%, rgba(255,122,0,1) 69%, rgba(157,61,20,1) 100%);
  }
  .parallax {
    /* The image used */
    background-image: url("../img/drakealbumsranked.jpg");
  
    /* Set a specific height */
    min-height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .h1 {
    color: azure;
    
  }
  
  
  .title{
  background-color: #918c8c;
  border-radius: 50px;
  
  }
  .border {
  width: 200px;
  height: 100px;
  border: 1px solid rgb(255, 255, 255);
  padding: 10px;
  margin: 10px;
  }
  
  .products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  }
  
  .product {
  background-color: #b9b3b3;
  margin: 10px;
  padding: 20px;
  text-align: center;
  width: 300px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(250, 250, 250, 0.1);
  }
  
  .product img {
  max-width: 100%;
  margin-bottom: 20px;
  }
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }