body{
margin:0px;
text-align:center;
}

#pinkwrapper{
width:33.33vw;
height:100vh;
background-color:#ff8ab8;
float:left;
}

#bluewrapper{
width:33.33vw;
height:100vh;
background-color:#36f0fe;
float:left;

}

#greenwrapper{
width:33.33vw;
height:100vh;
background-color:#cef450;
float:left;
}

.sodagirlwrapper img{
width:auto;
margin-top:5vh;
max-height:90vh;
}


/** MOBILE **/

@media only screen 
and (min-width : 0px) 
and (max-width : 415px)

{

#pinkwrapper{
width:100vw;
height:95vh;
}

#bluewrapper{
width:100vw;
height:95vh;
}

#greenwrapper{
width:100vw;
height:95vh;
}

.sodagirlwrapper img{
max-height:80vh;
}
}


/** TABLET **/


@media only screen 
and (min-width : 415px) 
and (max-width : 1000px)

{

.sodagirlwrapper img{
max-width:33.33vw;
}
}