body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
            padding: 2rem;
        }

        @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

.container {
    text-align: center;
}
.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 36px;
    margin-top: 5px;
    margin-bottom: 20px;
    font-family: "Pacifico", serif;
    font-weight: 400;
    font-style: normal;
}
.links {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}
.links li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.links a {
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}
.links a:hover {
    color: #0056b3;
}
.links a .url {
    margin-left: 10px;
    flex-grow: 1;
    text-align: left;
}
.links a .icon {
    margin-left: 10px;
    font-size: 16px;
}
.links img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}