*{
    margin: 0;
}
body{
    border:blue 4px solid;
    height: 500vh;
    background-image: url("../img/cat.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#wrapper{
    border:red 4px solid;
    width: 800px;
    height: 300vh;
    margin: 0 auto;
    position: relative;
    background-image: linear-gradient(to bottom,red, white);
}
.box{
    border:blue 4px solid;
    padding: 1em;
    margin: 1.5em;
    /*min-height: 100px;*/
    max-height: 100px;
    /*border-style: dotted;*/
    /*border-width: 20px 10px 5px 2px;*/
    border-radius: 20px 0 0 20px;
}
.box1{
    background-color: lightblue;
    /*height: 100px;*/
    overflow: auto;
    /*margin-left: 100px;*/
    margin: 20px 10px 30px 5px;
    box-shadow: 8px 8px 8px black;
}

.box2{
    background-color: lightgreen;
    /*position: relative;*/
    /*position: absolute;*/
    /*position: fixed;*/
    /*position: sticky;*/


    /*top: 0;*/
    /*top: 100px;*/
    /*left: 50px;*/
    /*bottom: 100px;*/
    /*right: 50px;*/

    /*z-index: -1;*/
}
.box3{
    background-color: lightpink;

}
.box4{
    background-color: lightgoldenrodyellow;

}







