*{
    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;
    /*border-bottom: blue 4px solid;*/
    /*border-style: dotted;*/
    /*border-width: 20px 10px 5px 2px;*/
    border-radius: 30px 0;
    padding: 1em;
    margin: 1.5em;
    /*height: 100px;*/
    /*min-height: 100px;*/
    max-height: 100px;
    overflow: auto;
    box-shadow: 8px 8px 8px black;
}
.box1{
    background-color: lightblue;
    /*position: sticky;*/
    /*top: 0;*/
    /*z-index: -1;*/
}
.box2{
    background-color: lightgreen;
    /*position: relative;*/
    /*position: absolute;*/
    /*position: fixed;*/

    /*top: 100px;*/
    /*left: 50px;*/
    /*bottom: 100px;*/
    /*right: 50px;*/
}
.box3{
    background-color: lightgoldenrodyellow;
    /*padding-left: 20px;*/
    padding: 25px 10px 6px 4px;
}
.box4{
    background-color: lightpink;
}