@font-face {
    font-family: 'PPTelegraf';
    src: url('font/PPTelegraf-Regular.otf') format('opentype'); /* ou "otf" */
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'PPTelegraf', sans-serif;
    background-image: url(srcBio/bg.png);
    background-size: auto; /* Garante que a imagem cubra toda a área */
    background-repeat: no-repeat; /* Evita repetição */
    background-position: center; /* Centraliza a imagem */
    font-size: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

.card {
    background: #f8f2e9;
    padding: 50px;
    margin: 20px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.btn-custom {
    width: 100%;
    margin: 10px 0;
    background-color: #e65050;
    color: #f8f2e9;
    border-radius: 25px;
    font-size: 20px;
    transition: transform 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}
.btn-custom:hover {
    transform: scale(1.1);
    background-color: #e65050;
    color: #f8f2e9;
}

.icons {
    margin-top: 20px;
}

.icons a {
    margin: 20px;
    font-size: 32px;
    color: #e65050;
    text-decoration: none;
}
