.bg {
    position: relative;
    height: 600px;
    /* background-color: tomato;
    background-image: url(../img/m01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    /* background-size: contain; */
    /* background-size: cover; */
    /* 고정하면서 사진 스크롤하기 */
    /* background-attachment: fixed; */

    /* 축약형으로 쓰기 !!!외우기!!! */
    /* background: image() repeat attachment position 좌우 상하 size; */
    background: tomato url(../img/m01.jpg) no-repeat fixed center center/cover;
    margin: 500px 0 2000px 0;
}

.bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to left, transparent 30%, #444 70%);
}

figure {
    width: 300px;
    margin: 0 auto;
}

figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.video {
    position: relative;
    overflow: hidden;
}

.video P {
    position: absolute;
    bottom: -50px;
    right: 0;
    font-size: 200px;
    font-weight: 900;
    color: #fff;
}

.sun {
    position: absolute;
    top: 100px;
    left: 200px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ff0;
    animation: sunMove 2s linear infinite;
    font-size: 0;

}

.sun::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: calc(50% - 2px);
    width: 4px;
    height: 50px;
    border-radius: 2px;
    background: #ff0;

}

.sun::after {
    content: "";
    position: absolute;
    top: -60px;
    left: calc(50% - 2px);
    width: 4px;
    height: 50px;
    border-radius: 2px;
    background: #ff0;

}

.sun span::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: -60px;
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: #ff0;

}

.sun span::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: -60px;
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: #ff0;

}

@keyframes sunMove {
    to {
        transform: rotate(360deg);
    }
}