* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    align-items: center;
    background-color: #F0E7E9;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjEwMjQiIHZpZXdCb3g9IjAgMCAxNDQwIDEwMjQiIHdpZHRoPSIxNDQwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Im0xNDQwIDUxMC4wMDA2NDh2LTUxMC4wMDA2NDhoLTE0NDB2Mzg0LjAwMDY0OGM0MTcuMzExOTM5IDEzMS4xNDIxNzkgODkxIDE3MS41MTMgMTQ0MCAxMjZ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #261B23;
    display: flex;
    flex-direction: column;
    font-family: Sans-Serif;
    font-size: calc(0.9em + 0.5vw);
    font-style: normal;
    font-weight: 400;
    justify-content: center;
    line-height: 1.25;
    min-height: 100vh;
    text-align: center;
  }

  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30vw; /* Ajuste conforme necessário */
    max-width: 200; /* Limite máximo para a imagem */
  }

  nav a {
    background: #2a8ff400;
    border-radius: 100%;
    display: flex;
    transition: background 0.25s cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

  nav a:hover {
    background: #033b8a04;
  }

  nav a img {
    width: 100%; /* Ajusta a largura da imagem para ocupar todo o espaço disponível em 'nav' */
    height: auto;
    object-fit: contain; /* Garante que a imagem não seja cortada */
  }

  ul {
    bottom: 0;
    left: 0;
    list-style: none;
    margin: 0 1rem 1rem 1rem;
    position: absolute;
    right: 0;
  }

  ul li {
    font-size: clamp(0.2rem, 2vw, 2rem);
  }
  
  /* img {
  max-width:200px;
  max-height:150px;
  width: auto;
  height: auto;
  } */