* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 9px 9px 16px #a3b1c6, -9px -9px 16px #ffffff;
}
h1 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    text-shadow: 1px 1px 1px #ffffff; 
}
.profile {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12em;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 7px 7px 10px #a3b1c6 inset, -7px -7px 10px #ffffff inset;
}
.profile .profile-img {
    width: 100%;
    aspect-ratio: 1/1;
    display: block;
    margin: auto;
    border-radius: 50%; 
    object-fit: cover;
    background: #e0e5ec;
}
p {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
}
.hobi, .sosmed {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hobi li {
    padding: 15px 25px;
    border-radius: 12px;
    background: #e0e5ec;
    box-shadow: 7px 7px 14px #a3b1c6, -7px -7px 14px #ffffff;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
}
.sosmed li {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e0e5ec;
    box-shadow: 7px 7px 14px #a3b1c6, -7px -7px 14px #ffffff;
    transition: all 0.2s ease-in-out;
}
.sosmed li a {
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sosmed li:hover {
    box-shadow: 7px 7px 10px #a3b1c6 inset, -7px -7px 10px #ffffff inset;
}

table {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
th, td {
    padding: 20px;
    border-radius: 12px;
}
th {
    color: #333;
    font-size: 1.1em;
}
td {
    background: #e0e5ec;
}

/*form*/
.form-container {
    padding: 0 30px;
    width: 100%;
    max-width: 500px;
}
h2 {
    background: #e0e5ec;
    box-shadow: 7px 7px 14px #a3b1c6, -7px -7px 14px #ffffff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    border-bottom: 1px solid #a3b1c6;
    border-radius: 4px;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
    min-height: 100px;
}
.form-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #3288ff;
    box-shadow: 7px 7px 14px #a3b1c6, -7px -7px 14px #ffffff;
    border-radius: 4px;
    cursor: pointer;
    color: #d9d9d9;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 40px;
}
.form-btn:hover {
    background: #e0e5ec;
    color: black;
    box-shadow: 7px 7px 10px #a3b1c6 inset, -7px -7px 10px #ffffff inset;
}
.audio {
    width: 70%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e0e5ec;
    box-shadow: 7px 7px 14px #a3b1c6, -7px -7px 14px #ffffff;
    margin-bottom: 40px;
}
.audio p {
    width: 60%;
    font-weight: bold;
}
.audio h1 {
    font-weight: bold;
    margin-top: 20px;
}
.audio .song-img {
    padding: 12px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e0e5ec;
    box-shadow: 7px 7px 14px #a3b1c6 inset, -7px -7px 14px #ffffff inset;
    margin-bottom: 40px;
}
.audio .song-img .wrap {
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}
.audio .song-img img {
    width: 100%;
    animation: 15s linear infinite;
}
.audio .progress {
    background-color: #ccc;
    height: 6px;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}
.audio .progress .progress-bar {
    background-color: #0987f6;
    height: inherit;
    width: 50%;
    border-radius: inherit;
    cursor: pointer;
    position: relative;
}
.audio .progress .progress-bar span {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #0987f6;
    border-radius: inherit;
    transform: translateY(-25%);
    right: -5px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.audio .progress:hover .progress-bar span {
    opacity: 1;
}
.audio .duration {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 20px;
    margin-top: -10px;
}
.audio .duration span {
    color: #333;
}
.audio .button {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.audio .button button {
    aspect-ratio: 1/1;
    min-width: 20%;
    min-height: 20%;
    position: relative;
    color: #333;
    background: #e0e5ec;
    box-shadow: 7px 7px 14px #a3b1c6, -7px -7px 14px #ffffff;
    border: none;
    cursor: pointer;
    padding: 20px;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}
.audio .button button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.map {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}