* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    background-image: url(asset/gambar/wallpaper.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes grow {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.profile-box {
    background-color: #0d0d0d;
    text-align: center;
    padding: 30px 30px;
    color: #ffffff;
    position: relative;
    border-radius: 20px;
    border: 3px solid #4b4b4b;
    box-shadow: 0px 0px 10px 2px black;
    animation: grow 0.5s ease-out;
}
.profile-box>h3 {
    font-weight: 600;
    color: red;
    text-shadow: 1px 1px 1px rgba(196, 0, 0, 0.7);
}

.profile-box>p {
    margin-top: 5px;
    font-size: 15px;
}

.menu-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 40px;
    top: 40px;
}

.profile-pict {
    width: 100px;
    height: 100px;  
    box-shadow: 0px 0px 10px 3px #000000;
    border-radius: 100px;
    margin-bottom: 10px;
    margin-top: 40px;
}
 
.social-media {
    display: flex;
    list-style-type: none;
    justify-content: center;
}

.social-media>ul {
    display: flex;
    list-style-type: none;
    padding: 15px;

}

.ig {
    width: 30px;
    height: 30px;
    margin: 10px;
}

.ig:hover {
    transform: scale(1.1);
    transition: all .1s ease-in-out;
}

.dc {
    width: 33px;
    height: 33px;
    margin: 8px;
}

.dc:hover {
    transform: scale(1.140);
    transition: all .1s ease-in-out;
}

.web {
    width: 28.5px;
    height: 28.5px;
    margin: 10px;
}

.web:hover {
    transform: scale(1.140);
    transition: all .1s ease-in-out;
}

.profile-bottom {
    background: #19191c;
    color: #eeeeee;
    padding: 30px 60px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: -30px;
    margin-top: -8px;
    border-radius: 0px 0px 20px 20px;
}

.profile-box button {
    background-color: #4b4b4b;
    color: white;
    border: none;
    outline: none;
    box-shadow: 0px 0px 5px 1px black;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: -40px;
    font-size: 100; 
}

.profile-bottom>p {
    font-size: 14px; 
    padding-top: 10px; 
    color: #d2d2d2;  
}