body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Darker Grotesque";
    gap: 0;
    background-color: #F2F0EB;
    color: #30302F;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 3vw;
}

.map-container {
    width: 225px;
    height: 150px;
}

.info-container {
    width: 100%;
    position: absolute;
    margin-top: 5vw;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #F2F0EB;
}

label.names {
    font-family: "Ephesis";
    font-size: 15vw;
    text-align: center;
}

label.title {
    font-size: 5vw;
    border-bottom: 2px solid #30302F;
}

label.detail {
    max-width: 70vw;
    text-align: center;
}

label.slogan {
    max-width: 60vw;
    text-align: center;
}

label.puv {
    font-family: "Clicker Script";
}

a.phone {
    text-decoration: none;
    color: #61605E;
}

.image-container {
    position: relative;
    height: auto;
    width: 100%;
}

.image-container img {
    display: flex;
    position: relative;
    height: auto;
    width: 100%;
}

.image-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.date-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 0;
}

.date-container-number {
    font-family: "Cormorant SC";
    font-size: 9vw;
    font-weight: 700;
    color: red;
    margin-bottom: -2vw;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.countdown-container-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.countdown-container-item-top-label {
    font-size: 5vw;
}

.countdown-separator {
    height: 5vw;
    width: 2px;
    background-color: #F2F0EB;
}

.countdown-finished-label {
    display: none;
    font-size: 6vw;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-container a {
    font-size: 2.5vw;
}

.location-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.location-container a {
    font-size: 2.5vw;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
}

.location-container a {
  background-color: #30302F;
  border: 1px solid #181818;
  border-radius: 8px;
  box-sizing: border-box;
  color: #F2F0EB;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 1vw 2.5vw;
  position: relative;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: box-shadow .2s,-ms-transform .1s,-webkit-transform .1s,transform .1s;
  user-select: none;
  -webkit-user-select: none;
  width: auto;
}

.location-container a:focus-visible {
  box-shadow: #181818 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  transition: box-shadow .2s;
}

.location-container a:active {
  background-color: #61605E;
  border-color: #181818;
  transform: scale(.96);
}

.location-container a:disabled {
  border-color: #DBDAD6;
  color: #DBDAD6;
  cursor: not-allowed;
  opacity: 1;
}

footer {
    background-color: #30302F;
    width: 100%;
    height: 8vw;
    max-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    text-align: center;
    color: #F2F0EB;
}

footer label {
    font-size: 2vw;
}

@media screen and (min-width: 1000px) {
    label.names {
        font-size: 150px;
    }

    label.title {
        font-size: 50px;
    }

    label.detail {
        font-size: 30px;
    }

    label {
        font-size: 30px;
    }

    .contact-container a {
        font-size: 25px;
    }

    footer label {
        font-size: 20px;
    }

    .location-container a {
        font-size: 25px;
    }

    .date-container-number {
        font-size: 90px;
    }

    .countdown-container-item-top-label {
        font-size: 50px;
    }

    .info-container {
        margin-top: 50px;
    }
}