@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
* {
    padding: 0;
    margin: 0;
    font-family: Poppins;
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #113DFF;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

body {
    background-color: #161616;
    overflow-x: hidden;
}

.navbar {
    background-color: transparent !important;
    font-weight: 600;
}

h1 {
    font-weight: 600;
}

.greeting-illustration {
    max-width: 100%;
    max-height: 100%;
}

p {
    font-weight: 300;
}

@keyframes typer {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.typing-container {
    display: flex;
}

.typing-cursor {
    display: inline-block;
    width: 4px;
    height: 32px;
    background-color: white;
    margin-left: 8px;
    animation: typer .6s linear infinite alternate;
}

.download-btn {
    background-color: #113DFF;
    padding: 0.5em 1.5em;
    text-decoration: none;
    font-weight: 600;
    color: white;
    border-radius: 100px;
}

.download-btn:hover {
    background-color: #fff;
    padding: 0.5em 1.5em;
    text-decoration: none;
    font-weight: 600;
    color: #113DFF;
    border-radius: 100px;
}

.photo-profile img {
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(15px);
    border-radius: 10%;
    height: 20em;
}


/* Kasih media Query jangan lupa!!! */

.pp {
    position: relative;
}

.circle {
    background: linear-gradient(90deg, rgba(17, 61, 255, 1) 0%, rgba(102, 47, 255, 1) 75%);
    width: 15em;
    height: 15em;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    z-index: -100;
}

.circle:first-child {
    background: linear-gradient(225deg, rgba(17, 61, 255, 1) 0%, rgba(102, 47, 255, 1) 75%);
    left: 15%;
    top: -25%;
}

.desc {
    z-index: 100;
}


/* Experience & skill */

.experiences,
.skills {
    min-height: 20vw;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    transition: 0.3s;
    overflow-x: hidden;
}

.experiences>img {
    width: 200px;
}

.skills>img {
    width: 100px;
}

.experiences:hover,
.skills:hover {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(15px);
    border-radius: 10px;
}

.works {
    text-align: center;
}

.works img {
    width: 450px;
    height: 470px;
}

.showcase>a {
    transform: scale(0.8);
    transition: 0.3s;
}

.showcase>a:hover {
    transform: scale(1);
}

.more {
    color: white;
    text-decoration-color: white;
}

footer {
    margin-top: 100px;
    min-height: 5vw;
    background-color: #113DFF;
}

.contact>a {
    display: inline-block;
}

.contact>a>img {
    transform: scale(0.8);
}

@media only screen and (max-width: 767.98px) {
    .pp {
        margin-top: 100px;
    }
    .circle {
        width: 10em;
        height: 10em;
        top: 70%;
    }
    .circle:first-child {
        left: 0%;
        top: -25%;
    }
    .desc {
        margin-top: 25px;
    }
    .experiences>img {
        width: 100px;
    }
    .skills>img {
        width: 50px;
        margin-top: 20px;
    }
}