html,
body {
  position: relative;
  height: 100dvh;
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: #212529;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  background-color: #fff;
}

.logo {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0;
  left: calc(50% - 32px);
  margin: 0 auto;
  display: block;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: 10;
}

.store-items {
  display: flex;
  justify-content: center;
  gap: 0rem;
  padding: 3rem 0;
  overflow: hidden;
}

.store-item {
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  width: 150px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Image inside gets centered  */
.square-image {
  width: 116px;
  height: 116px;
  margin: 0 auto;
  object-fit: cover;
  overflow: hidden;
  margin-bottom: 5px;
}

.center-item {
  transform: scale(1.2);
  z-index: 1;
}

.left-item {
  transform: rotate(-3deg);
  margin-left: -4rem;
  z-index: 0;
}
.right-item {
  transform: rotate(3deg);
  margin-right: -4rem;
  z-index: 0;
}

.store-items img {
  width: 100%;
  height: auto;
}

:root {
  --bs-primary: #42893e;
  --bs-primary-dark: #2f6f2f;
  --bs-secondary: #e1ffe4;
  --bs-light-gray: #f8f9fa;
  --bs-contrast-gray: #f0f2f4;
  --bs-dark: #212529;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.bg-contrast {
  background-color: var(--bs-contrast-gray) !important;
}

.btn {
  padding: 0.25rem 1rem;
  border-radius: 1rem;
}
.btn-primary,
.btn-primary:visited {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}
.btn-primary:hover,
.bg-primary:active,
.btn-primary:focus {
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
  color: #fff;
}

.nav-link {
  color: var(--bs-dark);
}

.a,
.a:visited {
  color: var(--bs-dark);
  cursor: pointer;
}

.list-group-item {
  cursor: pointer;
}

.image-header {
  position: relative;
  width: 100%;
  max-height: 250px;
  overflow: hidden;
}
.image-header img {
  position: relative;
  width: 100%;
  height: auto;
}

.image-header h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8));
  background-image: linear-gradient();
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
}

.inline-image {
  display: inline-block;
  max-height: 1.5rem;
}

.table-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  overflow: hidden;
}

.camera-upload {
  background-color: var(--bs-contrast-gray);
  font-size: 100px;
  height: 200px;
  color: var(--bs-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
}

.text-small {
  color: var(--bs-dark);
  font-size: 0.875em;
  line-height: 1.5em;
}

.card {
  border-radius: 0.25rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.center-table {
  text-align: center;
  vertical-align: middle;
}

.nav-link {
cursor: pointer;
}

.nav-link:hover {
  color: var(--bs-primary);
}