*{
    box-sizing: border-box;
}

body{
    margin: auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container{
    width: 1000px;
    margin: 0 auto;

.box{
    background-color:skyblue;
    width: 1000px;
    height: 200px;
    margin: 0 auto;
    color: white;
    border-radius: 5px;
    text-align: center;
    padding: 30px;
    position:sticky;
    top: 0;
}
.box1{
    background-color:tomato;
    height: 900px;
    padding: 5px;
    border-radius: 5px;
}
.box2{
    background-color:green;
    height: 200px;
    width: 1000px;
    padding: 5px;
    border-radius: 5px;
    position: fixed;
    bottom: 0;
    padding-top: 25px;
}
a{
    text-decoration: none;
    color: white;
}