.crayolabox{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 60%;
    top: 280px;
    left: 0px;
  
}
.pencils{
    display:inline-block;
    position:relative;
}

.pencils img {
    height: 500px;
    padding: 0;
}

iframe{
    position: absolute;
    overflow: hidden;
    top: 350px;
    height: 45%;
    width: 75%;
    z-index: 2;
    border: none;
    left: 11.25%;
}

.landing {
    height: 100%;
    background-image: url("https://img.freepik.com/free-photo/design-space-paper-textured-background_53876-42312.jpg?size=626&ext=jpg");
}

.tomato { transition: all .1s ease-in-out; }
.tomato:hover { transform: scale(.8); }
.linen { transition: all .2s ease-in-out; }
.linen:hover { transform: scale(.9); }
.darkorchid { transition: all .3s ease-in-out; }
.darkorchid:hover { transform: scale(.85); }
.lightgreen { transition: all .1s ease-in-out; }
.lightgreen:hover { transform: scale(.9); }
.cadetblue { transition: all .2s ease-in-out; }
.cadetblue:hover { transform: scale(.75); }
.yellow { transition: all .1s ease-in-out; }
.yellow:hover { transform: scale(.9); }
.darkolivegreen { transition: all .2s ease-in-out; }
.darkolivegreen:hover { transform: scale(.75); }
.deeppink { transition: all .3s ease-in-out; }
.deeppink:hover { transform: scale(.9); }
.orange { transition: all .1s ease-in-out; }
.orange:hover { transform: scale(.8); }
.steelblue { transition: all .2s ease-in-out; }
.steelblue:hover { transform: scale(.9); }


h1 { 
    font-family: 'Major Mono Display', monospace;
    top: 16px;
    left: 16px;
    font-size: 42px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-spacing: -5px;
    font-style: regular;
}

h2 {
    font-size: 15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: regular;
}

a {
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: black;
}

 .containerpink{
    position: absolute;
    top: 500px;

 }

 /* for all */
 .row1{
    display: inline-block;
    white-space: nowrap;
    flex: auto;
    padding: 0;
 }
 .row2 {
    display: inline-block;
    white-space: nowrap;
    flex: auto;
    padding: 0;
 }
 .row3 {
    display: inline-block;
    white-space: nowrap;
    flex: auto;
    padding: 0;
 }

 /* iphone */
@media screen
and (min-width: 320px)
and (max-width: 667px) {
    .row1{
        position: relative;
    }
    .row2 {
        position: absolute;
        top: 50px;
        left: 15%; 
    }
    .row3 {
        position: absolute;
        top: 100px;
        left: 0px; 
    }
    .pencils{
        padding: 10px;
        height: 100px;
    }
    img{
        width: calc(100% / 4);
    }
}
  
/* ipad */
@media screen 
and (min-width: 668px)
and (max-width: 1024px) {

   
    .row1{
        position: relative;
        left: 70px;
    }
    .row2 {
        position: absolute;
        top: 60px;
        left: 0; 
    }
    .row3 {
        position: absolute;
        top: 60px;
        left: 340px; 
    }
    .pencils{
        padding: 10px;
        height: 100px;
    }
    img{
        width: 110;
    }
}

 