body {
    background-color: #2e8fa6;
    font-family: "Trebuchet MS", sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

h1 {
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 8px;
}

p {
    font-size: 17px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.links-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Espaçamento entre os links */
}

a {
    background-color: white;
    font-size: 18px;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e8fa6;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease-in-out;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
}

a:hover {
    transform: scale(1.05);
}

a i {
    font-size: 24px;
    /* Tamanho do ícone */
    margin-right: 15px;
    /* Espaço entre o ícone e o texto */
}

@media (max-width: 600px) {
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    a {
        padding: 12px 15px;
        font-size: 16px;
    }

    a i {
        font-size: 20px;
        margin-right: 10px;
    }
}
