@charset "UTF-8";

body {
    background-color: #F9FAFB;
    color: #1F2937;
}
h1 {
    font-size: 60px;
    height: 100%;
    height: auto;
}
h2 {
    font-size: 45px;
}
img {
    width: 25px;
    background-color: white;
    border-radius: 50%;
}
a {
    font-size: 20px;
    text-decoration: none;
    color: #09419B;
}
strong {
    color :#1F2937;
    text-decoration-line: underline;  
}
hr {
    border: 2px solid #E5E7EB;
}
#ola {
    font-size: 25px;
    font-weight: bold;
    color: #1F2937;
    margin-top: 20px;
    margin-bottom: 20px;
}
p {
font-size: 20px;
margin-top: 20px;
margin-bottom: 20px;
color: #1F2937;
}

#bloco {
    display: flex;
    align-items: center;
    justify-content: center;

}

#cabeçalho {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    padding: 8px 12px;
}

#cabeçalho h1 {
    margin: 0;
    white-space: nowrap; 
    font-size: clamp(24px, 5vw, 60px); 
}


.profile-pic {
    width: clamp(48px, 8vw, 96px);
    height: clamp(48px, 8vw, 96px);
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto; 
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

@media (max-width: 340px) {
    #cabeçalho {
        flex-direction: column;
        gap: 8px;
    }
    #cabeçalho h1 {
        font-size: 20px;
        white-space: normal;
        text-align: center;
    }
}