* {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f3f3f3;
}

.container {
    text-align: center;
    max-width: 35rem;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.img-profile {
    margin-top: -5rem;
    display: inline-block;
    background-color: #006783;
    border-radius: 50%;
    padding: 10px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 2rem;
    font-weight: bold;
    color: #016783;
    margin-top: 0.5rem;
}

.header {
    display: flex;
    justify-content: space-between;
}

.header > a {
    margin-left: -6.25rem;
    padding-right: 2rem;
}

.logo {
    height: 4rem;
}

.vCard {
    align-self: center;
    border-radius: 25px;
    background-color: #d4d4d4;
    border: 0;
    padding: 10px 0;
    margin: -10px 0 10px 0;
    cursor: pointer;
    width: 250px;
    transition: background-color 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.vCard:hover {
    background-color: #cec7c7;
    transform: translateY(-5px);
}

.contact-text-download {
    color: #016783;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 1px;
}

.links-section {
    z-index: 1;
    padding-left: 8px;
}

.contact-link {
    text-decoration: none;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-left: 1.2rem;
    width: 380px;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 5px;
}

.contact-item:hover {
    background: linear-gradient(135deg, #0095be, #07b4d6);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.contact-item:hover .contact-text {
    color: white;
}

.contact-item-blank {
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-bottom: -150px;
}

.contact-text {
    color: #016783;
    margin-left: 1rem;
    font-size: 23px;
}

.icon {
    width: 2rem;
    height: 2rem;
}

.icon-certificate {
    width: 35px;
    height: 25px;
    margin-right: -5px;
}

.footer {
    font-size: 0.8rem;
    padding-top: 1rem;
    display: block;
}

.footer-link {
    text-decoration: none;
    color: #9b2cdb;
}

.footer-link:hover {
    text-decoration: underline;
}