@keyframes opacity {
    from {opacity: 0%;}
    to {opacity: 100%;}
}
@keyframes title-position {
    from {translate: 0% -50%;}
    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%;}
}
@keyframes wobble {
    0% {transform: rotate(5deg);}
    100% {transform: rotate(-5deg);}
}
@keyframes wobble-reverse {
    0% {transform: rotate(-5deg);}
    100% {transform: rotate(5deg);}
}

: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;
}

.animate-wobble {
    animation: wobble 4s ease-in-out 0s infinite alternate;
}

.animate-wobble-reverse {
    animation: wobble-reverse 4s ease-in-out 0s infinite alternate;
}

.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, .content-block-green {
    background-color: var(--white);
    color: var(--black);

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

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

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

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

.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 > h1 {
    font-family: 'simple-beauty';
    text-align: center;
    font-size: 5rem;

    width: 95%;
}
@media (max-width: 1000px){
    .split-box-content-box > h1 {
        font-size: 3rem;
    }
}
.split-box-content-box > h2 {
    font-family: 'simple-beauty';
    text-align: center;
    font-size: 5rem;
    font-weight: normal;

    width: 95%;
}
@media (max-width: 1000px){
    .split-box-content-box > h2 {
        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;
}
@media (max-width: 1000px){
    .split-box-content-box > img {
        max-width: 90%;
        max-height: 90%;
    }
}

.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 > h1 {
    font-family: 'simple-beauty';
    text-align: center;
    font-size: 6rem;

    width: 95%;
}
@media (max-width: 1000px){
    .grid-content-box > h1 {
        font-size: 3rem;
    }
}
.grid-content-box > h2 {
    font-family: 'simple-beauty';
    text-align: center;
    font-size: 6rem;
    font-weight: normal;

    width: 95%;
}
@media (max-width: 1000px){
    .grid-content-box > h2 {
        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;
}

.button, .button-small {
    font-family: 'core-bandi-face';
    text-decoration: none;
    color: var(--white);
    background-color: var(--green);
    padding: 8px;
    padding-left: 16px;
    padding-right: 16px;

    font-size: 1.5rem;

    border-radius: 10px;

    box-shadow: 0px 0px 4px var(--black);
}
.button, .button-small > img {
    object-fit: contain;
    display: block;
}
.button:hover, .button-small:hover {
    box-shadow: 0px 0px 8px var(--black);
}
@media (max-width: 1000px){
    .button, .button-small {
        font-size: 1rem;
    }
}

.button-small {
    padding-left: 8px;
    padding-right: 8px;
}
@media (max-width: 1000px){
    .button-small {
        font-size: .90rem;
    }
}

.content-box-map {
    width: 80%;
    height: 80%;
}
@media (max-width: 1000px){
    .content-box-map {
        width: 95%;
        height: 97.5%; 
    }
}

.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;
    }
}