@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');

body{
    background: transparent;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
}

#subtitle{
    width: 100vw;
    height: 100vh;
    display: flex;
}

#article{
    background-color: #60a5cf;
    color: white;

    width: -moz-fit-content;
    width: fit-content;

    padding-right: 10px;
    /* position: absolute; */
    z-index: 1;

    border-top-right-radius: 10vh;
    border-bottom-right-radius: 10vh;

    transition-property: background-color, opacity;
    transition-duration: 1s;
    transition-timing-function: linear;
}

#title{
    margin-left: 10vh;
    margin-right: 10vh;
}

#box{
    z-index: 0;
    overflow-x: hidden;
    flex-grow: 1;
}

#content{
    padding-left: 10px;
    display: inline-block;
    color: black;
}
.text{
    font-size: 50vh;
    font-family: 'Noto Sans KR';
    font-weight: 1000;
    line-height: 100vh;
    white-space: nowrap;
}

.effect{
    animation-name: scroll;
    animation-timing-function: linear;
}
@keyframes scroll{
    from{
        transform: translateX(100vw);
    }
    to{
        transform: translateX(-100%);
    }
}
