/*************************************************************/
/*                           Core                            */
/*************************************************************/

@font-face {
    font-family: 'Sans';
    src: url('../font/sans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


#page-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #0066ff;
    background-color: black;
}

#content-wrapper{
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 200;
    padding: 2.5rem;
    box-sizing: border-box;
    font-family: 'Sans', sans-serif;
    font-size: 18px;
}

#content-wrapper .inner-parent{
    position: relative;
    width: auto;
    height: auto;
    box-sizing: border-box;
}

#content-wrapper a{
    display: flex;
    align-items: baseline;
    width: auto;
    color: #0066ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#content-wrapper a:hover{
    color: #00378a;
}

.inner-parent *{ 
    opacity: 0; 
}

.inner-parent a *{
    white-space: nowrap;
}

.inner-parent *{
    animation: sequence-in 0s steps(1) forwards;
}

.s1{ 
    animation-delay: .8s !important; 
    margin-right: 1rem; 
}
.s2{ 
    animation-delay: 1.2s !important; 
    margin-right: 1rem; 
}
.s3{ 
    animation-delay: 1.6s !important; 
    margin-right: 1rem; 
}
.s4{ 
    animation-delay: 2s !important; 
}

@keyframes sequence-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/*************************************************************/
/*                       Responsiveness                      */
/*************************************************************/

@media only screen and (max-width: 850px)  {
    .s1, .s2, .s3, .s4{
        font-style: normal;
        line-height: 1.3;
        font-size: 16px;
    }
    
    #content-wrapper {
        padding: 1.5rem;
    }
    
    .inner-parent a{
        flex-direction: column;
    }
    
    .inner-parent *{ 
        width: 100%; 
    }
}