* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #5dfff2, #405DE6);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: 100%;
    max-width: 440px;
    color: #000;
    text-align: center;
    padding: 50px 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.card img, .profile-svg {
    margin-top: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.card h2 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
}

.card p {
    font-size: 20px;
    font-weight: 500;
}

.card .links i {
    margin: 10px 20px;
    margin-top: 30px;
    font-size: 40px;
}

.card .links a {
    text-decoration: none;
}

.card .links {
    margin-top: 20px;
}

.links .link-items:nth-child(1) i {
    color: #ff0000;
}

.link-items:nth-child(2) i {
    background: -webkit-linear-gradient(45deg, #405DE6, #E4405F 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.button {
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    background: #356bff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 30px 10px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.button:hover {
    background: #5381ff;
    color: #000;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.5);
}