
    body {
      background-image: linear-gradient(to bottom, #929292, #d6d6d6, #353535);
      margin: 0;
      font-family: 'Times New Roman', Times, serif;
      color: #1a1a1a;
    }

    header,
    section,
    footer {
      padding: 2rem;
      max-width: 960px;
      margin: auto;
    }

    header h1 {
      text-align: center;
      font-size: 2.5em;
      margin: 0;
    }

    .apresenta {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 3rem;
    }

    img.perfil {
      height: 150px;
      border-radius: 50%;
    }

    .descrito h2 {
      margin: 0 0 1rem 0;
    }

    .descrito p {
      margin: 0.5rem 0;
      line-height: 1.6;
    }

    section.contato {
      margin-top: 3rem;
    }

    section.contato h2 {
      font-size: 1.8em;
      margin-bottom: 1rem;
    }

    ul.contatos {
      list-style: none;
      padding: 0;
    }

    ul.contatos li {
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    ul.contatos img {
      height: 20px;
      width: 20px;
    }

    ul.contatos a {
      text-decoration: none;
      color: #000;
      font-weight: bold;
    }

    ul.contatos a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .apresenta {
        flex-direction: column;
        align-items: flex-start;
      }

      header h1 {
        font-size: 2em;
      }

      .descrito h2 {
        font-size: 1.4em;
      }
    }
  
