html,
body {
  height: 100%;
  background-color: #E1E0FF;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
}

.navbar {
     background-color: #E1E0FF;
}

.navbar-item img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-light-indigo {
  background-color: #E1E0FF;
}

.bg-pink {
  background-color: #e661d5;
}

.bg-peach {
  background-color: #fc9a62;
}

.bg-indigo {
  background-color: #5575EE;
}

.text-indigo {
  color: #5575EE;
}

.bg-dark-blue {
  background-color: #6c30b0;
}

.bg-orange {
  background-color: #ff7051;
}

.text-orange {
  color: #ff7051;

}

.bg-purple {
  background-color: #b23386;
}

.navbar {
  display: flex;
  justify-content: center;
}

.navbar-brand {
  display: flex;
  margin-top: 10px;
  justify-content: center;
  width: 100%;
}

.navbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-brand img {
  max-height: 3rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.navbar-brand a:hover {
     background-color: transparent;
}

.title {
  line-height: 1.5em;
}

.product-col {
  display: flex;
  flex-direction: column;
}
.product-card {
  flex: 1;
}



.content .title {
  cursor: pointer;
}

.button-shadow:hover {
  transform: translate(-4px, -4px);
  box-shadow: 3px 3px rgba(0, 0, 0, 0.5);
}

.button {
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

.title-bar {
  display: flex;
  align-items: center;
  justify-content: start;
}

.image {
  border-radius: 20px;
}

.is-rounded img {
  border-radius: 100%!important;
}

.title-bar img{
  position: relative;
  top:5px;
}


footer a:hover, footer a:hover svg { 
  color: #5575EE;
  fill: #5575EE;
  transform: translate(-1px, -1px);
}

.is-rounded {
  border-radius: 10px;
}

.is-avatar {
  border: 5px solid #318ba3;
}

.rotate-15 {
  transform: rotate(-15deg);
}

.rotate-15:hover {
  transform: translate(-1px, -1px);
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.5);
}

.hover-effect:hover {
  transform: translate(-5px, -5px);
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  text-shadow: 3px 3px rgba(255, 255, 255, 0.5);
}


@media screen and (max-width: 768px) {
  
  .navbar-brand img {
    max-height: 2.25rem;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
}