* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.bg-navy-900 {
  background-color: #1e293b;
}

.text-white {
  color: white;
}

.bg-image {
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-black {
  background-color: black;
}

.bg-opacity-60 {
  opacity: 0.6;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.golden-top {
  padding-top: 30vh;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.text-center {
  text-align: center;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 767px) {
  .px-4 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.max-w-4xl {
  max-width: 56rem;
}

.font-black {
  font-weight: 900;
}

.tracking-wider {
  letter-spacing: 0.025em;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.font-light {
  font-weight: 300;
}

.mb-8 {
  margin-bottom: 2rem;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.inline-block {
  display: inline-block;
}

.bg-white {
  background-color: white;
}

.text-blue-900 {
  color: #1e3a8a;
}

.font-bold {
  font-weight: 700;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.hover\:bg-blue-100:hover {
  background-color: #dbeafe;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.mb-20 {
  margin-bottom: 5rem;
}

.fixed {
  position: fixed;
}

.bottom-4 {
  bottom: 1rem;
}

.bottom-6 {
  bottom: 2rem;
}

.bottom-0 {
  bottom: 0;
}

.left-1\/2 {
  left: 50%;
}

.transform {
  transform: translateX(-50%);
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-0\.5 {
  margin-bottom: 0.125rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.md\:text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

/* Responsive */
@media (min-width: 768px) {
  .md\:text-9xl {
    font-size: 8rem;
    line-height: 1;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-9xl {
    font-size: 8rem;
    line-height: 1;
  }

  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* Title sizes */
.title {
  font-size: 4rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .title {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 8rem;
  }
}

/* Subheading */
.subheading {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 768px) {
  .subheading {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .subheading {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* Date */
.date {
  font-size: 1.125rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .date {
    font-size: 1.25rem;
    line-height: 1;
  }
}

/* Location */
.location {
  font-size: 1rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .location {
    font-size: 1.125rem;
    line-height: 1;
  }
}
