* {
    margin: none;
    padding: none;
}

body {
    position: relative;
}

.box-Model {
    display: flex;
    justify-content: center;
}

.box {
    height: 200px;
    width: 200px;
    background-color: aqua;
    position: relative;
    top: 20px;
}

.box2 {
    height: 200px;
    width: 200px;
    background-color: chocolate;
    position: absolute;
    bottom: 0;
}

.box3 {
    height: 200px;
    width: 200px;
    background-color: blueviolet;
    position: sticky;
    top: 0;
}

.box4 {
    height: 200px;
    width: 200px;
    background-color: crimson;
    position: fixed ;
    right: 0;
}

.box5 {
    height: 200px;
    width: 200px;
    background-color:darkblue ;
    margin-left: 10px;
}

.box-1 {
    height: 200px;
    width: 200px;
    background-color:darkgreen;
    margin-right: 10px;
}