* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.intro {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.loopVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.contents {
    display: flex;
    flex-direction: column;
    margin-left: 10vw;
}

.buttons {
    display: flex;
    margin-top: 20vh;
}

.logo {
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
}

.title {
    font-size: 40px;
    font-family: "NotoSansKR-Bold";
    letter-spacing: -2px;
    color: #fff;
    margin-top: 35px;
}
.tour {
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #9000c6;
    font-family: "NotoSansKR-Medium";
    border: 0;
    border-radius: 37px;
    cursor: pointer;
    font-size: 16px;
}

.outlink {
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 37px;
    color: #9000c6;
    font-family: "NotoSansKR-Medium";
    text-decoration: none;
    margin-left: 27px;
    text-align: center;
    cursor: pointer;
}

.contentsbox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,1);    
}
.contentsbox iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.cansel {
    position: absolute;
    z-index: 1;
    top: 7px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 32px;
    color: #000;
    cursor: pointer;
}
.cansel i {
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width:450px) {
    .logo {
        width: 135px;
    }
    .title {
        font-size: 20px;
    }
    .buttons {
        flex-direction: column;
    }

    .tour {
        font-size: 14px;
    }

    .outlink {
        font-size: 14px;
        margin-left: 0;
        padding: 10px 0;
        width: 120px;
        margin-top: 15px;
    }
}




@media (max-width:450px) {
    .title {
        font-size: 18px;
    }
}