* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
  font-size: 18px;
}
.containerApp {
  display: flex;
  align-items: center;
  position: relative;
  top: 1rem;
  justify-content: space-between;
}
.sidebarApp {
  width: 25%;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 15px;
  height: 92vh;
  box-shadow: 0px 0px 3px gray;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fa-circle {
  color: orangered;
}
.searchBarApp {
  width: 100%;
  color: #fff;
  background: #000;
  border-radius: 3px;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inputApp {
  border: none;
  outline: none;
  color: #fff;
  background: #000;
}
.glass:hover {
  color: orangered;
  cursor: pointer;
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fa-brands {
  font-size: 25px;
  margin: 0 10px;
  color: #333;
  cursor: pointer;
}
.fa-brands:hover {
  color: orangered;
}
.data {
  width: 73%;
  border-radius: 3px;
  height: 92vh;
  overflow-y: auto;
}
.top {
  height: 60px;
  border-radius: 3px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
#root {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.box {
  height: 176px;
  margin: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: -3.4rem;
  justify-content: space-between;
  border-radius: 5px;
  padding: 15px;
}
.img-box {
  width: 100%;
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.images {
  max-height: 90%;
  max-width: 90%;
  border-radius: 5px;
  position: relative;
  top: -1rem;
  object-fit: cover;
  object-position: center;
}
.bottom {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
h2 {
  font-size: 20px;
  color: orangered;
}

p {
  color: #fff;
  font-size: 30px;
  position: relative;
  top: -10rem;
  filter: drop-shadow(0 1px 1px #000);
}
 .buttonApp {
  width: 100%;
  position: relative;
  top: -9rem;
  border: none;
  border-radius: 5px;
  background: transparent;
  font-size: 27px;
  padding: 7px 25px;
  cursor: pointer;
  color: white;
  filter: drop-shadow(0 1px 1px #000);
}
::-webkit-scrollbar {
  display: none;
}