@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}

.main_visual{ /* 메인비주얼 영역 크기 먼저 잡아주기 */
    height: 100vh;
    position: relative;
}
.main_visual video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.main_visual .text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.733);
    font-size: 30px;
}
.main_visual .text a{ /* a는 인라인태그라서 크기 변화를 못하는 태그 */
    background-color: aliceblue;
    color: #333;
    font-size: 15px;
    width: 120px;
    height: 50px;
    line-height: 50px;
    display: block;
    margin: 20px auto;
}