.header {
    height: 65px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: black;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(33, 33, 33);
    align-items: middle;
}

.website-title {
    width: 400px;
    display: flex;
    align-items: middle;
    margin-right: 20px;
}

.website-search {
  display: flex;
  align-items: center;
  flex: 1;
}

.search-bar {
  height: 20px;
  padding: 11px 10px 10px 20px;
  border-radius: 40px 0 0 40px;
  border: 1px solid gray;
  background-color: #202020;
  flex: 1;
  font-size: 16px;
  color: #fff;
  transition: .15s;
  border-right:none;
  max-width: 400px;
}

.search-bar::placeholder {
  font-size: 16px;
}

.search-bar:hover {
  border: 1px solid rgb(162, 162, 162);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1);
}

.search-icon {
  filter: invert(1);
  width: 23px;
  border-radius: 0 40px 40px 0;
  border: 1px solid gray;
  padding: 9px;
  background-color: #c5c5c5;
  cursor: pointer;
}

.search-icon:hover {
  border: 1px solid rgb(162, 162, 162);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.website-logo {
  filter: invert(1);
  height: 38px;
  width: 38px;
  object-fit: cover;
  margin: 15px 14px 12px 25px;
  transition: .4s;
}

.website-logo:hover {
  transform: scale(1.2);
}

.cards {
  perspective: 500px;
}
  
.card {
  width: 200px;
  height: 40px;
  background: #202020;
  border: 2px solid #555555;
  border-radius: 4px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 1s;
  margin: 12px 20px 4px 10px; 
  transition: 1s;
}
  
.card:hover {
  transform: translateZ(10px) rotateX(15deg) rotateY(15deg);
  border-color: #fff;
}
  
.card_title {
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: transform .5s;
  font: 700 1.5rem monospace;
  text-shadow: -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}
  
.card:hover .card_title {
  transform: translateZ(50px);
}

input[type = "checkbox"] {
  display: none;
  visibility: hidden;
}
  
.bar {
  display: block;
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 40px;
  z-index: 200;
}
  
.bar span {
  position: absolute;
  width: 45px;
  height: 7px;
  background: #f1faee;
  border-radius: 100px;
  display: inline-block;
  transition: 0.3s ease;
  left: 0;
 }
  
  .bar span.top {
    top: 0;
  }
  
  .bar span.middle {
    top: 17px;
  }
  
  .bar span.bottom {
    bottom: 0;
  }
  
  input[type]:checked ~ span.top {
    transform: rotate(45deg);
    transform-origin: top left;
    width: 48px;
    left: 5px;
  }
  
  input[type]:checked ~ span.bottom {
    transform: rotate(-45deg);
    transform-origin: top left;
    width: 48px;
    bottom: -1px;
    box-shadow: 0 0 10px #495057;
  }
  
  input[type]:checked ~ span.middle {
    transform: translateX(-20px);
    opacity: 0;
  }

  .bar:focus {
    outline: none;
    border-color: #3498db;
  }

  .website-dropdown {
    position: relative;
    display: inline-block;
    transform: scale(.65);
    margin-top: 10px;
    margin-left: 40px;
    margin-right: 10px;
  }
 
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(0, 0, 0);
    min-width: 220px;
    height: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    list-style: none;
    padding: 0;
    top: -50px;  
    right: -26px;
    z-index: 100;
    font-size: 22px;
  }
  
  .dropdown-content li {
    color: none;
  }
  
  .dropdown-content li:last-child {
    border-bottom: none;
  }
  
  .dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    border: 1px solid white;
    transition: .15s;

  }
  
  .dropdown-content a:hover {
box-shadow: inset 0 0 5px rgba(255, 255, 255, .4);  }
  
  .website-dropdown.active .dropdown-content {
    display: block;
  }

  .blank-space {
    padding-top: 104px;
    background-color: black;
    border-left: none;
  }

  .edge-top  a {
    border-radius: 5px 5px 0 0;
  }

  .edge-bottom  a {
    border-radius: 0 0 5px 5px;
  }
