.label {
  line-height: 1.2;
  font-size: 12px;
  background-color: gray;
  margin: 0;
  padding: 2px;
  text-align: center;
}
.profile {
  border: olivedrab 10px double;
  border-radius: 5px;
}
.profile h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 6px;
  color: rgb(216, 142, 62);
  text-shadow: 1px 1px 2px black;
}
.profile img {
  border-radius: 2px;
  border: none;
  width: 300px;
}
.about {
  height: 90%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about h3 {
  font-size: 20px;
  line-height: 1;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.social-links a {
  text-decoration: none;
  color: white;
  background: rgb(173, 113, 50);
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
}

#vibe-link {
  text-align: end;
}
#header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: white;
  background-color: rgb(35, 37, 46);
  border-radius: 5px;
}
#main-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  border: rgb(118, 63, 170) 3px dashed;
}
#main-links {
  width: 30%;
  list-style: none;
  padding: 4px;
  margin: 0;
  color: rgb(0, 0, 0);
}
#main-links h4 {
  margin: 2px;
  text-decoration: underline;
}

#main-links a {
  margin: 2px 0;
  padding: 2px;
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  background-color: rgb(157, 201, 90);
}
#main-links a:hover {
  background-color: rgb(118, 163, 57);
}
#updates-container {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 14px;
  color: rgb(0, 0, 0);
  border-left: rgb(118, 63, 170) 3px dashed;
}
#listed-items {
  padding: 0;
}
.carousel-title {
  font-size: 20px;
  text-decoration: none;
  color: #222;
  text-shadow: 1px 1px 2px #aaa;
}

.listed-title {
  display: flex;
  margin: 10px 0;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: bold;
}
.listed-date {
  font-size: 10px;
  color: gray;
  margin-left: 10px;
}
.listed-description {
  margin: 10px 0;
  max-height: 200px;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.listed-description::-webkit-scrollbar {
  display: none;
}
.listed-tag {
  background: #e0e0e0;
  border-radius: 3px;
  padding: 2px 6px;
  margin-right: 4px;
  font-size: 12px;
  cursor: pointer;
}
.listed-tag:hover {
  background: #c0c0c0;
}

.carousel-item-container {
  min-height: 120px;
}
.see-more-container {
  text-align: center;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  #main-content, #header {
    flex-direction: column;
    align-items: center;
  }
  
  #updates-container, #main-links {
    width: 100%;
    border: none;
  }
  #botom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
