body {
    cursor: url('cursor.png'), auto;
    font-family: 'Montserrat';
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.block {
    z-index: 2;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}

.card {
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.info {
    text-align: center;
}

.info h1, .info p {
    margin: 0;
}

.info h1 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
}

.click {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.avatar {
    width: 100px;
    height: 100px;
    background-image: url('avatar.jpeg');
    background-size: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    width: 100%;
}

.social-link {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    margin-right: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    z-index: 2;
    position: relative;
    display: inline-block;
}

.social-link:hover {
    background-color: #555;
}

.social-link:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

@media only screen and (max-width: 600px) {
    .card {
        padding: 10px;
    }

    .avatar {
        width: 80px;
        height: 80px;
    }

    .social-links {
        width: 100%;
    }
}
