:root {
  --white: #ffffff;
  --lightgray: #dbdbdb;
  --darkRed: #b62729;
  --yellow: #ffcb05;
  --black: #1d1614;
  --textColor: #1d1614;
  --mainNavTextColor: #6a6a6a;
  --textAlert: #f00;
  --fontFamilyPrimary: "Noto Sans SC", serif;
}

body {
  background: rgb(174, 45, 30);
  background: linear-gradient(
    360deg,
    rgba(174, 45, 30, 1) 0%,
    rgba(194, 8, 2, 1) 100%
  );
  font-family: var(--fontFamilyPrimary);
}

h1 {
  color: #b62729;
  font-size: 28px;
  font-weight: bolder;
}

.page-content {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

.text-danger {
  color: #b62729 !important;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: var(--yellow);
  border-color: var(--yellow);
  border-radius: 100px;
  color: var(--darkRed) !important;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--darkRed);
  border-color: var(--darkRed);
  color: var(--yellow) !important;
}

.aspect-image {
  width: 100%; /* Or any fixed width you want */
  aspect-ratio: 2.13 / 1; /* Aspect ratio 16:9 */
  object-fit: cover; /* Ensures the image doesn't get distorted */
}

@media (min-width: 576px) {
  h1 {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
}
