body {
  margin: auto;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.v-space-01{
 height:auto;
 width: 8px;
}

.v-space-02{
  height:auto;
  width: 16px;
}

.v-space-03{
  height:auto;
  width: 24px;
}

.v-space-04{
  height:auto;
  width: 32px;
}


.h-space-01{
 width:auto;
 height: 8px;
}

.h-space-02{
  width:auto;
  height: 16px;
}

.h-space-03{
  width:auto;
  height: 24px;
}

.h-space-04{
  width:auto;
  height: 32px;
}


.inline {
  display: inline-block;
}

.centered {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width:100%;
}

.img-grid {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width:100%;
}


.bg-primary {
  background-color:#B5C99A;
}


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

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

.text-black {
  color: #000;
}

.text-primary {
  color: #B5C99A;
}

.text-cursive {
  font-family: "Rouge Script", serif;
  font-weight: 400;
}


.text-uppercase{
  text-transform:uppercase;
  font-family: "Playwrite FR Moderne", serif;
  font-weight: 200;
}

.text-uppercase-bolder{
  text-transform:uppercase;
  font-family: "Playwrite FR Moderne", serif;
  font-weight: 400;
}

.text-secondary {
  font-family: "Playwrite FR Moderne", serif;
  font-weight: 400;
}

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

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline #000 2px;
}

.underlined {
  text-decoration: underline #000 2px;
}

.main-text{
  font-size: 64px;
  margin: 0;
}

.main-text-02{
  font-size: 48px;
  margin: 0;
}

.main-text-03{
  font-size: 40px;
  margin: 0;
}

h1 {
  font-size: 28px;
  margin: 0;
}

h2 {
  font-size: 20px;
  margin: 0;
}

p {
  font-size: 16px;
  margin: 0;
}

h4 {
  font-size: 14px;
  margin: 0;
}

h5 {
  font-size: 12px;
  margin: 0;
}

#main-image{
  width: 100%;
  margin: auto;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}


#party-image{
  width: 64px;
  height: 64px;
  position: relative;
  top: -56px;
  padding:16px;
  border-radius: 100px;
}

.icon-small{
  width: 32px;
  height: 32px;
}

.icon-medium{
  width: 48px;
  height: 48px;
}

.h-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dotted-line {
  border: none;
  border-top: 4px dotted black;
  opacity: .5;
  width: 60%;
}







.img-container img {
    width: 300px;
    cursor: pointer;
    padding: 24px;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.overlay img {
    max-width: 90%;
    max-height: 90%;
    z-index: 1001;
}
.overlay .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.overlay.show {
    visibility: visible;
    opacity: 1;
    z-index: 1001;
}

.margin-16 {
  margin-left: 16px;
  margin-right: 16px;
}

.video {
  width: 100vw;
  height: 400px;
}


@media (min-width: 768px) {
  .video {
    width: 70vw;
    height: 80vh;
  }
}

.vid-width{
  width: 300px;
  padding: 24px;
}

button{
  height: 48px;
}


.tab-container {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 16px;
    width: 100vw;
}

.sticky {
  position: sticky;
  top:0;
  z-index: 1000;
}

.tab.active {
    text-decoration: underline #000 2px;
}
.tab-content {
    display: none;
    margin: auto;
}
.tab-content.active {
    display: block;
}

.tab{
  cursor: pointer;
}
