body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: rgb(245, 244, 244);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    max-width: 100%;
    width: 500px;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    animation: slideInFromTop 1.5s ease-out forwards
}

.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: -30px;
    z-index: 1;
}

.profile-photo-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 2;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10%;
    padding-left: 20px;
    border: 2px solid black;
    border-color: rgb(0, 0, 0);
    margin: 6px 0;
    text-decoration: none;

    p {
        color: black;
        font-weight: bold;
    }
}

.social-link:hover {
    background-color: rgb(206, 201, 201);

    p {
        color: white;
    }
}

.sub-title {
    font-size: 14px;
    color: gray;
    margin-top: -10px;
    margin-bottom: 20px;
}

.container>h1 {
    font-size: 24px;
}

.media-social {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: center;
    gap: 10px;
}

.media-social-link:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.share {
    border-radius: 10px;
    border: 2px solid black;
    border-color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 25px;
    margin-top: 50px;

    p {
        color: black;
        font-weight: bold;
    }
}

.share:hover {
    background-color: rgb(206, 201, 201);

    p {
        color: white;
    }
}