@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: linear-gradient(180deg, #ffffff 50%, #caece1 100%);
}

#titles{
    color: #ffb41e;
    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: 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{
    left: 0;
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
    justify-content: center;
    overflow: hidden;
}

.content2{
    top: 50vh;
    flex-direction: column;
    position: absolute;
}

.descLap{
    display: flex;
    align-items: center;
    
}

#descriptionApp{
    padding: 0 1rem 0 1rem;
    font-size: x-large;
}

#phoneImage{
    width: 25vw;
    max-width: 350px;
    animation: imgShowL 1s ease-in-out forwards;
}

#laptopImage{
    width: 35vw;
    max-width: 500px;
    animation: imgShowR 1s ease-in-out forwards;
    
}

@media only screen and (max-width: 900px) {
    #descriptionApp {
        padding: unset;
        font-size: 3vw;
        padding-bottom: 90px;
    }
    .content{
        flex-direction: column-reverse;
    }
    #title{
        font-size: 20vw;
    }
    
    .subTitle{
        font-size: 10vw;
    }
    .subMiniTitle{
        font-size: 5vw;
    }
    #laptopImage{
        width: unset;
    }
    #phoneImage{
        width: unset;
    }
}

@media only screen and (max-width: 500px) {
    #titlesContainer{
        height: 35vh;
    }

    #titles{
        height: 30vh;
    }

    .content{
        display: block;
        padding: 25px 0 0;
        top: 35vh;
    }

    .content2{
        padding: 1rem;
    }

    .descLap{
        flex-direction: column;
    }

    #descriptionApp{
        padding: 0 0 0 2rem;
        margin: 2rem 2rem 0 0;
        font-size: 5vw;
    }

    #phoneImage, #laptopImage{
        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); }
}