body{
margin: 0;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background: linear-gradient(120deg,#000000,#fffcfc);
color: #ffff;
display: flex;
flex-direction: column;
align-items: center;

}

header{
    text-align: center;
    padding: 25px;
}

header img{

    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 4px;
}

header h1{

    margin: 15px 0 5px;
    font-size: 20px;
}

header p{

    margin: 2px;
    font-size: 16px;
}

/* Botão Instagram */
.btn-instagram {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    background: #E1306C; /* cor do insta */
    color: #fff;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-instagram i {
    margin-right: 6px;
}

.btn-instagram:hover {
    background: #c92d62;
    transform: scale(1.05);
}

