@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/BarlowCondensed-SemiBold.ttf');
}

#titlesContainer{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 1rem;
    height: 50vh;
    background-color: #3a355c;
}

#titles{
    text-shadow: 2px 2px 5px black;
    display: flex;
    flex-direction: column;
    height: 42vh;
    justify-content: center;
    max-height: 900px;
    max-width: 900px;
    width: 100%;
}

#title{
    font-size: 15vh;
}

#subTitle{
    font-size: 6vh;
    text-align: end;
}

.subTitle{
    font-size: 10vh;
    text-align: end;
    color: #ffb41e;
    text-shadow: 2px 2px 5px black;
}

.subMiniTitle{
    font-size: 5vh;
    color: #ffb41e;
    text-shadow: 2px 2px 5px black;
}

.content{
    position: absolute;
    left: 0;
    top: 50vh;
    padding: 1rem;
    text-align: center;
    width: -webkit-fill-available;
}

.about{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.descLap{
    display: flex;
    align-items: center;
    
}

#descriptionApp{
    padding: 0 1rem 0 1rem;
    font-size: x-large;
}

#phoneImageLeft{
    width: 25vw;
    max-width: 350px;
    animation: imgShowL 1s ease-in-out forwards;
}

#phoneImageRight{
    width: 25vw;
    max-width: 350px;
    animation: imgShowR 1s ease-in-out forwards;
    
}

.buttonNav{
    background-color: #ff7f50;
    color: white;
    text-shadow: 1px 1px 2px black;
    border: 0px;
    padding: 1rem;
    font-size: initial;
    max-height: 50px;
    text-decoration: unset;
    white-space: nowrap;
    border: solid;
}

.section{
    font-size: x-large;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 900px) {
    #descriptionApp {
        padding: unset;
        font-size: 3vw;
        padding-bottom: 90px;
        padding-top: 90px;
    }
    .section{
        font-size: 3vw;
    }
    .content, .about{
        flex-direction: column-reverse;
    }
    #title{
        font-size: 20vw;
    }
    
    #subTitle{
        font-size: 6vw;
    }
    .subTitle{
        font-size: 10vw;
    }
    .subMiniTitle{
        font-size: 5vw;
    }
    #phoneImageRight{
        width: unset;
    }
    #phoneImageLeft{
        width: unset;
    }
}

@media only screen and (max-width: 500px) {
    #titlesContainer{
        height: 35vh;
    }

    #titles{
        height: 30vh;
    }

    .content{
        display: block;
        padding: 25px 2rem 2rem;
        top: 35vh;
    }

    .about{
        display: block;
        padding: 25px 0 0;
        top: 35vh;
    }

    .descLap{
        flex-direction: column;
    }

    #descriptionApp{
        padding: 0 0 0 2rem;
        margin: 2rem 2rem 0 0;
        font-size: 5vw;
    }

    .section{
        font-size: 5vw;
    }

    #phoneImageLeft, #phoneImageRight{
        width: 100%;
    }
}

@keyframes imgShowR {
    0%   { transform: translate(100%, 0); }
  100% { transform: translate( 0%, 0); }
}

@keyframes imgShowL {
    0%   { transform: translate(-100%, 0); }
  100% { transform: translate( 0%, 0); }
}