/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');
body{
    margin: 0;
    padding: 0;
    /* font-family: 'Ubuntu', sans-serif; */
    font-family: 'Oswald', sans-serif;
}

.contenedor{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}

.background-svg-bottom{
    height: 30vh;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.background-svg-left{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: none;
}

#App{
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mockup-img{
    height: 600px;
    width: auto;
    object-fit: contain;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    
    
}

.text{
    width: 600px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
}

.text >h1{
    font-size: 40px;
}
.text >h4{
    font-weight: 500;
    font-size: 28px;
}
.text >h4,h1{
    margin: 10px 0;
    text-align: center;
   
}
.text a >img{
    width: 260px;
}




@media only screen and (max-width: 800px) {
    .mockup-img{
        height: 400px;
    }

    .text{
        width: 400px;
      
    }
    
    .text >h1{
        font-size: 28px;
    }
    .text >h4{
        font-size: 18px;
    }

    .text a >img{
        width: 260px;
    }


}

@media only screen and (max-width: 740px) {

    .mockup-img{
        height: 340px;
    }

    .text{
        width: 300px;
      
    }
    
    .text >h1{
        font-size: 24px;
    }
    .text >h4{
        font-size: 18px;
    }

    .text a >img{
        width: 260px;
    }

   

    .background-svg-left{
      display: block;
        
    }
    .background-svg-bottom{
      display: none;
    }
    .contenedor{
      flex-direction: column;
    }
    .text{

        color: black;

    }
}
