*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plain Light';
    color: #fff;
}
html,body{
    height: 100%;
    width: 100%;
}
#loader{
    position: fixed;
    padding: 20vh 10vw;
    width: 100%;
    height: 100%;
    background-color: #0b0b0b;
    z-index:9999;
}
.line{
    height: fit-content;
    overflow: hidden;
    display: flex;
    gap: 3vw;
}
#line1-part1{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}
#line1-part1 h5,#line1-part1 h6{
    font-size: 3vw;
    font-weight: 100;
    font-family: "silk serif";
}
#line1-part1 h5{
    width: 5vw;
    text-align: right;
}
.line h1,h2{
    font-size: 6.5vw;
    text-transform: uppercase;
    font-weight: 900;
}
#main{
    position: relative;
    background-color: black;
}
#page1{
    height: 100vh;
    width: 100%;
    background-color: #1a1a1a;
}
.line h2{
    animation: anime;
    animation-duration: 2.8s;
    animation-iteration-count: infinite;
}
@keyframes anime {
    0%{
        font-family: "Plain Light";
        color: #fff;
        font-weight: 500;
        opacity: 1;
    }
    48%{
        font-family: "Plain Light";
        color: #fff;
        font-weight: 500;
        opacity: 0;
    }
    50%{
        font-family: "silk serif";
        color: transparent;
        font-weight: 500;
        opacity: 1;
    }
    100%{
        font-family: "silk serif";
        color: rgba(255,255,255,0.505);
        font-weight: 500;
        opacity: 0;
    }
}