
/* Nav bar */
.navbar {
  padding: 2rem;
  background-color: #f5f3f4;
}

.navbar-collapse {
  align-items: center;
  justify-content: flex-end;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand i {
  margin-right: 20px;
  font-size: 2rem;
}

/* Home */
.home {
  max-height: 85vh;
  overflow-y: hidden;
}

.img-copyright {
  color: white;
  position: absolute;
  bottom: 40px;
  right: 200px;
}

.img-copyright a {
  color: white;
  text-shadow: 0 0 5px black;
}

.img-copyright a:hover {
  color: gray;
  
}

.overlay {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
}

.hero {
  color: white;
  text-shadow: 0 0 15px black;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 6.5rem;
}

/* Category, brand and components lists */
li {
  list-style: none;
  text-align: start;
}

.list-container, .component-container {
  height: 80vh;
  min-width: 45vw;
  background-color: rgba(255,255,255,0.6);
  border-radius: 7px;;
}

.list {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 85%;
  width: 100%;
  text-align: start;
}

.list-item-info {
  width: 75%;
}

.list-item-info p:first-child {
  font-size: 1.5rem;
  font-weight: bold;
}

.list-img {
  height: 100px;
  width: 120px;
}

.list-add-element {
  position: absolute;
  right: 40px;
}

.list-group {
  max-height: 100%;
}

.list-group-item {
  background-color: rgba(255,255,255,0.5);
}

/* Component detail */
.component-description {
  text-align: start;
  font-size: 1.3rem;
}

/* Create brand form */
.cu-container {
  display: flex;
  flex-direction: column;
}

.cu-container h1 {
  color: white;
  text-shadow: 0 0 11px black;
  margin-bottom: 2.5rem;
}

.white-label {
  font-size: 1.2rem;
  color: white;
  width: 100%;
  text-align: start;
}

.cu-container button {
  align-self: center;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.footer-content {
  background: rgb(4,10,19);
  background: linear-gradient(0deg, rgba(4,10,19,1) 63%, rgba(25,28,31,1) 100%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  height: 50px;
  gap: 1rem;
}

.footer a {
  color: white;
  gap: 2rem;
}

.footer a:hover {
  color: gray;
}

.footer i {
  margin-left: 1rem;
}