* {
  font-family: 'Josefin Sans', sans-serif;
}

body::-webkit-scrollbar {
  display: none; /* Hide the scrollbar */
}

body {
  margin: 0;
}

nav {
  position: relative;
  display: flex;
  background-color: black;
  align-items: center;
  user-select: none;
}

#sandwich {
  width: 45px;
  height: 45px;
  padding: 10px 10px 10px 20px;
  cursor: pointer;
}

#sandwich-dropdown {
  display: flex;
  width: 100%;
}

.sub-choices {
  padding: 8px 0 8px 10px;
  width: fit-content;
  margin-right: 20px;
}

#sub-choices-dynamic {
  display: flex;
}

.sub-choice {
  margin: 6px 0;
  user-select: none;
}

.sub-choice:hover {
  color: #FDCC00;
  cursor: pointer;
}

.sub-choice a{
  color: white;
  text-decoration: none;
}

.sub-choice a:hover {
  color: #FDCC00;
  cursor: pointer;
}

.main-choices {
  padding-left: 10px;
  padding-right: 10px;
  background-color: #303030;
  color: #FDCC00;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.dropdown-content {
  display: none;
  position: absolute;
  transform: translateY(47%);
  background-color: #2b2b2b;
  z-index: 1;
  min-height: 156px;
}

.dropdown-choice {
  cursor: pointer;
  margin: 10px 0;
  text-align: center;
  user-select: none;
}

.dropdown-choice:hover {
  color: white;
}

.show {
  display: flex;
}

#logo-horizontal {
  height: 60px;
  padding: 5px 0 5px 20px;
}

#search-bar {
  max-width: 602px;
  width: 100%;
  min-width: 80px;
  margin: auto 28px auto 30px;
}

#search-bar input {
  width: 93%;
  height: 40px;
  font-size: 1.2em;
  color: #CCCCCC;
  padding-left: 40px;
  background-color: #4D4D4D;
  background-image: url(/assets/search_icon.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 10px center;
  border-radius: 10px;
  border-style: none;
  outline: none;
}

#nav-settings {
  margin-left: auto;
}

#upload-account-pic {
  margin: 0.6em;
}

#user-pfp {
  width: 60px;
  height: 60px;
  margin-right: 3em;
  margin-left: 1.5em;
  margin-top: 6px;
  border-radius: 10px;
}

.inline {
  display: inline;
}

#pfp-input {
  display: none;
}

#dropdown-genre {
  color: white;
}

#imgdiv {
  max-height: 600px;
  max-width: 600px;
}

#defaultPfp {
  cursor: pointer;
  width: 150px;
  height: 150px;
  border-radius: 10px;
}

@media screen and (max-width: 428px) {
  .dropdown-content {
  transform: translateY(43%);
  }
}