.shortcut-bar-container {
/*  display: flex;
  flex-direction: column;*/
  margin-top: 10px;
  margin-bottom: 10px;
}

#shortcut-header {
  margin-bottom: 20px;
  text-align: center;
  color: grey;
}

.shortcut-bar-container-desktop {
  display: none;
}

.shortcut-bar {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shortcut-bar h6 {
  text-align: center;
}

.button-group {
  display: flex;
  margin-bottom: 20px;
}

.smooth-scroll-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 10px;

}

.smooth-scroll-button a {
  color: rgba(255, 87, 0, 1);
  padding: 10px;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  align-items: center;
  border: 1px solid orange;
  width: 140px;
  text-align: center;
}

.desktop-portfolio {
  display: none;
}

.mobile-portfolio {
  margin: 0 auto;
  padding-top: 140px;
  width: 90%;
  background-color: white;
  text-align: center;
}

.mobile-carousel-container {
  width: 100%;
  margin-bottom: 30px;
}

.mobile-carousel-slide {
  display: flex;
  flex-wrap: nowrap;
  background-color: white;
  height: 100%;
  width: 100%;
  padding-bottom: 10px;
  overflow-y: scroll; /* has to be scroll, not auto */
}

.mobile-carousel-slide img {
  width: 90%;
  height: 400px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  margin-right: 10px;
  object-fit: cover;
}