@-webkit-keyframes kenburns-bottom {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 84%;
              transform-origin: 50% 84%;
    }
    100% {
      -webkit-transform: scale(1.25) translateY(15px);
              transform: scale(1.25) translateY(15px);
      -webkit-transform-origin: bottom;
              transform-origin: bottom;
    }
  }
  @keyframes kenburns-bottom {
    0% {
      -webkit-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
      -webkit-transform-origin: 50% 84%;
              transform-origin: 50% 84%;
    }
    100% {
      -webkit-transform: scale(1.25) translateY(15px);
              transform: scale(1.25) translateY(15px);
      -webkit-transform-origin: bottom;
              transform-origin: bottom;
    }
  }

.disable-scroll {
    overflow: hidden;
}

#landing-page {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: #E3CDBC;
    display: none;

    font-size: 18px;

}

#landing-page b {
    font-family: inherit;
}

#landing-page .inner {
    width: 100vw;
    height: 100vh;
    background-image: url(https://anotherbodyfilm.com/wp-content/themes/anotherbody/assets/AB_Film\ Still\ _1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: kenburns-bottom 3s ease-out infinite alternate both;
    animation: kenburns-bottom 3s ease-out infinite alternate both;
}

#landing-page .lpcontent {
    z-index: 100;
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#landing-page .lpcontent div {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
	font-size: 14px !important;
}

#landing-page h2 {
    font-size: 36px;
    margin: inherit;
    text-shadow: 0 0 5px #fff, 0 0 10px #84FDAE, 0 0 15px #84FDAE, 0 0 20px #84FDAE, 0 0 30px #84FDAE, 0 0 50px #84FDAE, 0 0 60px #84FDAE;
}

#landing-page h3 {
    margin: inherit;
    padding: inherit;
}

#landing-page strong {
    color: #84FDAE;
    text-shadow: black;
    /* box-shadow: 0px 0px 40px 20px #000; */
}

.lpsocials {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000000;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 32px;
    /* margin: 20px 0; */
}

.lpsocials img {
    height: 20px;
}

#landing-page button {
    font-size: 24px;
}

#landing-page button {
    display: inline-block;
    margin: 0 10px;
}

#landing-page a {
    border-bottom: 0;
    display: inline-block;
    margin-top: 10px;
}

@media (max-width: 700px) {
    #landing-page h2 {
        font-size: 24px;
    }

    #landing-page button {
        font-size: 16px;
    }
}