body{
    background-color: #000; 
    margin: 0; /*去掉默认的边距和内边距*/
    padding: 0; /*去掉默认的边距和内边距*/
}

header{
    margin-top: 3em; /*距离顶部的距离*/
    text-align: center;  /*文本居中*/
    color: #fff; /*字体颜色*/
}

header h1{
    font-size: 3em; /*字体大小*/
    font-weight: 900; /*加粗*/
}

#container3D{
    position: absolute; /*绝对定位*/
    top: 0; /*距离顶部的距离*/
    width: 400px; /*容器宽度*/
    height: 400px; /*容器高度*/
    left: 0; /*距离左边的距离*/
}