*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#skill{
    color: #ffffff;
    font-weight: 500;
    padding: 15px;
    border: 7px solid black;
}

#skill:hover{
    padding: 17px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 1);
}

#service{
    padding: 5px;
    margin-bottom: 20px;
    border: 7px solid rgb(0, 0, 0);
}

#gambarservice{
    font-size: 100px;
    margin: 0 10px;
}

#navbartext{
    position: relative;
    text-decoration: none;
    color: white;
}

#navbartext:after{
    content: ""; /* Elemen kosong untuk underline */
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0; /* Jarak dari teks */
    height: 2px;
    width: 0; /* Ketebalan underline */
    background-color: rgb(255, 0, 0); /* Warna underline */
    transition: all 0.3s ease; /* Efek transisi */
}

#navbartext:hover{
    color: rgb(255, 0, 0);
}

#navbartext:hover:after{
    left: 0;
    right: auto;
    width: 100%;
}

#thisisnavbar{
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    position: sticky;
}

#anim-elements{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

#anim-elements #anim-element{
    position: absolute;
    font-size: 30px;
}

#anim-elements #anim-element:nth-child(1){
    top: 12%;
    left: 20%;
    color: #ffffff;
    animation: anione 13s infinite linear alternate;
}

#anim-elements #anim-element:nth-child(2){
    top: 36%;
    left: 15%;
    color: #ffffff;
    animation: anione 13s infinite linear alternate;
}

#anim-elements #anim-element:nth-child(3){
    top: 40%;
    left: 30%;
    color: #ffffff;
    animation: anione 13s infinite linear alternate;
}

#anim-elements #anim-element:nth-child(4){
    top: 50%;
    left: 40%;
    color: #ffffff;
    animation: anione 13s infinite linear alternate;
}

#anim-elements #anim-element:nth-child(5){
    top: 25%;
    left: 55%;
    color: #ffffff;
    animation: anione 13s infinite linear alternate;
}

@keyframes anione {
    0% {transform: translate(0, 0) rotate(0);}
    40% {transform: translate(141px, 72px) rotate(75deg);}
    80% {transform: translate(-40px, 72px) rotate(145deg);}
    100% {transform: translate(0, 0) rotate(0);}
}

#fotoporto{
    margin: 18px 0;
    width: 80%;
}

footer{
    padding: 0;
    margin: 0;
    background: #4e4e4e;
}