  <style>
        body {
            background-color:#495057;
            font-family: 'Arial', sans-serif;
            color: #333;
            margin: 0;
            padding: 20px;
        }
        header {
            text-align: center;
            padding: 30px 0 10px 0;
            background-color: #6c757d;
            color: black;
        }
        h1 {
            font-family: 'Brush Script MT', cursive;
            font-size: 2.5em;
        }
        h3 {
            font-size: 1.3em;
            color: #495057;
			  }
        h4 {
            font-size: 1.3em;
            color: #495057;
        }
        .container {
            max-width: 600px;
            margin: auto;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .photo {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        .photo img {
            border-radius: 8px;
            max-width: 200px; /* Tamanho da foto ajustado */
            height: auto;
        }
        .links a {
            display: block;
            margin: 8px 0;
            text-decoration: none;
            color: #007bff;
            font-weight: bold;
        }
        .links a:hover {
            text-decoration: underline;
        }
        footer {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
        }
        footer a {
            color: white;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
<style</>
			