body {
  margin-top: 90px;
  background-color: black;
  color: white;
  padding-bottom: 50px;
}
.background-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: black; 
  z-index: 1;
  /* border-bottom: 1px solid gray; */
}

.logo {
  width: 141px;
  height: 48px;
  position: fixed;
  top: 5px;
  left: calc(1% + 2px);
  padding: 5px;
  margin-left: 15px;
  margin-top: 10px;
  z-index: 2; 
}

.button-container {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: flex;
    gap: 10px;
}

.customs-button {
    height: 48px;
}

#videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin: 10px;
}

.video {
  text-align: center;
}

.video img {
  width: 400px;
  height: 225px;
  border-radius: 10px;
}
.video a {
  color: white;
  text-decoration: none;
}

.videoSuggestions {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-left: 24px;
  overflow-x: scroll;
}
.videoSuggestions::-webkit-scrollbar {
  display: none;
}

.video_suggestion {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 30px 0;
  height: 30px;
}

.video_suggestion_tag {
  position: fixed;
  right: 30px;
  top: 25px;
  width: 100px;
  height: 38px;
  background-color: #1a73e8;
  color: #ffffff;
  border-radius: 4px;
  border: none;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 540;
  font-size: 17px;
  letter-spacing: .25px;
  /* line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center; */
  cursor: pointer;
  z-index: 9999;
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.video_suggestion_tag {
  opacity: 0;
  animation: appear 0.6s ease 1s forwards;
}

@keyframes appear {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.video_suggestion_tag:hover{
  background-color: rgb(0, 73, 191);
}

.video_suggestion_tag:focus{
  outline: none; 
}


.hr_line {
    border: none;
    border-top: 1px solid #666;
    color: #fff;
    background-color: #fff;
}


body::-webkit-scrollbar {
  display: none;
}

#result {
	position: fixed;
	top: 10px;
	right: calc(1% + 10px);
	z-index: 9999;
	padding: 10px;
	font-size: 40px;
}
.footer-background {
  background-color: black;
  height: 15px;
  width: 100%; 
  position: fixed; 
  bottom: 0; 
  left: 0;
}

@media (max-width: 1663px) {
  #videos {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px; 
  }
}

@media (max-width: 1335px) {
  #videos {
    grid-template-columns: repeat(2, 1fr); 
    grid-gap: 60px; 
  }
}

@media (max-width: 920px) {
  #videos {
    grid-template-columns: repeat(1, 1fr); 
    grid-gap: 80px;
  }

	#videos {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  padding: 0 30px;
}
}
@media (min-height: 1620px) {
  .background-bar {
    height: 90px;
  }
  .body {
   margin-top: 105px;
  }
  .logo {
    width: 225px; 
    height: 76px;
  }

  div#user {
    padding: 20px; 
  }

  #videos {
    display: flex;
    flex-direction: column;
  }
  /* .custom-button {
    width: 150px;
    height: 55px;
    font-size: 30px;
  } */
  .customs-button {
    height: 96px;
  }
  .video {
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
  }

  .video img {
    width: 100%; 
    max-width: none;
    height: auto;
  }

  .video a {
    font-size: 24px;
  }
  #result {
  font-size: 50px;
  }
}
@media screen and (min-height: 1620px) {
  .video_suggestion_tag {
      width: 150px;
      height: 55px;
      font-size: 30px;
  }
}


