@charset "UTF-8";

#page-content {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    padding-top: 10vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--Phlux);
}

h1, h2 {
    color: #FFF;
    margin: 0;
}

.home-logo {
    width: 26.6vw;
    height: 60vh;
    margin-top: auto;
    position: relative;
}

.home-logo img {
    width: 100%;
    bottom: 0;
    z-index: 20;
    position: absolute;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}

#phone {
    bottom: -100%;
    animation-name: phone-jump;
}

@keyframes phone-jump {
    0%     {bottom: -100%;}
    10%    {bottom: -100%;}
    12%    {bottom: -25%}
    13%    {bottom: -30%;}
    70%    {bottom: -30%;}
    97%    {bottom: -30%;}
    98%    {bottom: -22%;}
    100%   {bottom: -100%}
}

#icons {
    width: 50%;
    left: 50%;
    bottom: -60%;
    z-index: 10;
    transform: translateX(-50%);
    animation-name: icon-jump;
    animation-timing-function: ease-out;
}


@keyframes icon-jump {
    0%     {bottom: -60%; opacity:1; width: 50%;}
    12%     {bottom: -60%; opacity:1; width: 50%;}
    13%    {bottom: 30%;}
    70%    {bottom: 60%; width: 75%;}
    94%     {opacity: 1;}
    95%    {bottom: 60%; opacity: 0;}
    100%   {opacity: 0; width: 75%;}
}