@keyframes opacity {
    from {opacity: 0%;}
    to {opacity: 100%;}
}
@keyframes title-position {
    from {translate: 0% -25%;}
    to {translate: 0% 0%;}
}
@keyframes date-position {
    from {translate: -100% 0%;}
    to {translate: 0% 0%;}
}
@keyframes location-position {
    from {translate: 100% 0%;}
    to {translate: 0% 0%;}
}
@keyframes enlarge {
    from {width: 20%;}
    to {width: 40%;}
}

:root {
    --black: #333;
    --white: snow;
    --green: #355234;
    --pink: #FFCFD8;
}

*{
    margin: 0px;
    padding: 0px;
}

.animate-opacity {
    opacity: 0;
    transition: all 3s ease;
  }
.animate-opacity.visible {
    opacity: 1;
  }

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

.title-bar-content {
    justify-content: space-evenly;
    flex-direction: row;

    width: 50%;
    height: 100%;
    animation: opacity 3s ease-in;

    height: 100%;
}
@media (max-width: 1000px){
    .title-bar-content{
        width: 100%;
        height: 100%;
    }
}
.title-bar-content > p {
    color: var(--white);
    
    text-align: center;
    font-size: 2rem;
    font-family: "core-bandi-face";
    
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
}
@media (max-width: 1000px){
    .title-bar-content > p {
        font-size: 1rem;
    }
}

.content-block {
    background-color: var(--white);
    color: var(--black);

    width: 100%;
    height: 100vh;
}
@media (max-width: 1000px){
    .content-block {
        height: 75vh;
    }
}

.half-content-block {
    background-color: var(--white);
    color: var(--black);

    width: 100%;
    height: 50vh;
}
@media (max-width: 1000px){
    .half-content-block {
        height: 25vh;
    }
}
.half-content-block > p {
    font-family: 'core-bandi-face';
    font-size: 2rem;

    text-align: center;
}
@media (max-width: 1000px){
    .half-content-block > p {
        font-size: 1rem;
    }
}

.split-box {
    display: grid;
    grid-template-columns: 50% 50%;

    width: 100%;
    height: 100%;
}
@media (max-width: 1000px){
    .split-box {
        grid-template-columns: 1fr;
        grid-template-rows: 50% 50%;
    }
}

.split-box-content-box {
    width: 100%;
    height: 100%;
    
    overflow: hidden;
}
.split-box-content-box > h {
    font-family: 'simple-beauty';
    text-align: center;
    font-size: 5rem;

    width: 95%;
}
@media (max-width: 1000px){
    .split-box-content-box > h {
        font-size: 3rem;
    }
}
.split-box-content-box > p {
    font-family: 'core-bandi-face';
    text-align: center;
    font-size: 2rem;

    width: 95%;
}
@media (max-width: 1000px){
    .split-box-content-box > p {
        font-size: 1rem;
    }
}
.split-box-content-box > img{
    object-fit: contain;
    display: block;
    
    max-width: 75%;
    max-height: 75%;
    width: auto;
    height: auto;
}

.grid-column-box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    
    width: 100%;
    height: 100%;
    
    overflow: hidden;
}
.grid-row-box{
    display: grid;
    grid-template-rows: 1fr 1fr;
    
    width: 100%;
    height: 100%;
    
    overflow: hidden;
}

.grid-content-box{
    width: 100%;
    height: 100%;
    
    overflow: hidden;
}
.grid-content-box > h {
    font-family: 'simple-beauty';
    text-align: center;
    font-size: 6rem;

    width: 95%;
}
@media (max-width: 1000px){
    .grid-content-box > h {
        font-size: 3rem;
    }
}
.grid-content-box > p {
    font-family: 'core-bandi-face';
    text-align: center;
    font-size: 2rem;

    width: 95%;
}
@media (max-width: 1000px){
    .grid-content-box > p {
        font-size: 1rem;
    }
}
.grid-content-box > img{
    object-fit: contain;
    display: block;
    
    max-width: 75%;
    max-height: 75%;
    width: auto;
    height: auto;
}

.image-green-block {
    position: absolute;

    background-color: var(--green1);
    opacity: 90%;

    transform: translate(16%, -116%);
    width: 75%;
    height: 75%;
}

.image-overlay-text{
    justify-content: center;
    align-items: center;

    text-align: center;
    font-size: 64px;
}

.accomodation-button {
    font-family: 'core-bandi-face';
    text-decoration: none;
    color: var(--white);
    background-color: var(--pink);
    padding: 8px;

    font-size: 1.5rem;

    border-radius: 10px;

    box-shadow: 0px 0px 4px var(--black);
}
.accomodation-button:hover {
    box-shadow: 0px 0px 8px var(--black);
}
@media (max-width: 1000px){
    .accomodation-button {
        font-size: 1rem;
    }
}

.footer {
    position: sticky;
    bottom: 0;
    
    color: var(--white);
    background-color: var(--black);

    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;

    font-size: 16px;
}
@media (max-width: 1000px){
    .footer {
        position: relative;
        top: 0;
        height: 0;

        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}