body,html{
     margin: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(296deg, #3d9cfa 0%, #3768d9 100%) 0% 0% no-repeat padding-box;
    padding-bottom: 0;
    box-sizing: border-box;
}
.container{
  display: flex;
  justify-content: center;
  align-items: start;
  width:100%;
  box-sizing: border-box;
  flex-direction: row;
}
.container .left{
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 33%;
}
.container .google-play-btn{
  width: 130px;
  height: 60px;
}
.container .right{
  display: flex;
  justify-content: end;
  align-items: center;
  width: 66%;
  height: calc(100vh - 80px);
}
.container .right .screen{
 /* background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
 */

}

 
    
    
.container .left .logo{
  background-image: url('./images/cow.svg');
  width: 200px;
  height: 80px;
  background-repeat: no-repeat;
  position:relative;
}

.container .left .logo:before{
  content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d8deed26;
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -5px;
}

.container .left .logo .text{
  font-family: "Nunito", sans-serif;
  color: #fff;
  font-size: 28px;
  margin-left: 50px;
}


.container .left .google-play-button{
  /* margin-top: 60px;
  margin-left: 20px; */
}








 