/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
    background-image: url('fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
}


.foto-bebe {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 30% center; /* SÓ A FOTO para a DIREITA */
    border: 1px solid white;
    box-shadow: 0 1px 25px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

.texto-lado {
    flex: 1;
}

.texto-lado h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.texto-lado p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-style: italic;
}