*{
    margin: 0 auto;
    padding: 0;
}
.bg{
    background-color: #1b1a17;
}
.header{
    width: 100%;
    height: 70px;
    background-color: #1abc9c;
    transition: 0.6s ease;
}

.txtheader{
    font-family: 'Poppins', serif !important;
    justify-content: center;
    font-weight: 700px;
    padding-top: 10px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: 0.6s ease;
    object-fit: cover;
    object-position: center;
}

.txtheader:hover{
    color: transparent;
    -webkit-text-stroke: 2px white;
    transition: 0.6s ease;
    cursor:default;
}


.bundaran{
    position: relative;
    margin: 0 auto;
    display: block;
    width: 150px;
    animation: Slide_Up 1s ease;
}

.nama{
    text-align: center;
    font-family:'poppins',serif !important;
    color: white;
    margin-top: 10px;
    animation: Slide_Left 1s ease;
}
.bio{
    font-family: 'montserrat', serif;
    text-align: center;
    font-weight: 800;
    color: white;
    animation: Slide_Left 2s ease;
}
.btn-primary{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800!important;
    height: 50px;
    text-transform: uppercase;
    font-size: 24px;
    color: black !important;
    background-color: white !important;
    transition: 0.6s ease;
}
.btn-primary:hover{
    color: white !important;
    background-color:transparent!important;
}
.btn{
    animation: ZoomIn 1s ease;
}

@keyframes Slide_Up {
    0%{
        transform: translateY(250px);
    }
    100%{
        transform: translateY(1000);
    }
}

@keyframes ZoomIn {
    0%{
        transform: scale(0%);
    }
    100%{
        transform: scale(100%);
    }
}

@keyframes naik {
    0%{
        transform: translateY(250px);
    }
    100%{
        transform: translateY(1000);
    }
}


@keyframes Slide_Left{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translatex(0%);
    }
}

@keyframes Slide_Right{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(0%);
    }
}

@media (max-width: 768px){
    .txtheader h1{
        margin-top:6px;
    }
}
