body{
    background-color: #4682B4;
}
*{
    box-sizing: border-box;
}
#container{
    width: 960px;
    background-color: blue;
    margin: 0 auto;
    padding: 20px;
}
#box{
    background-color:gold;
    text-align: center;
    width: 850px;
    height: 200px;
    border: 10px solid black;
    margin: 20px;
}
#box1{
    background-image: url(../IMG/album.jpg);
    background-repeat:no-repeat;
    background-size: 300px;
}
h1{
    text-align: center;
}
